firedrake: Initial packaging
This commit is contained in:
25
firedrake/fiat.nix
Normal file
25
firedrake/fiat.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
with import <nixpkgs> {};
|
||||
|
||||
python27Packages.buildPythonPackage rec {
|
||||
version = "20847cdee0d323726571324f565ff3da6f19e700";
|
||||
name = "firedrake-fiat-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "firedrakeproject";
|
||||
repo = "fiat";
|
||||
rev = "${version}";
|
||||
sha256 = "1id0p06m7mwx8caz30g0cgci2n73mvqf6i6hnm1w08m605fxvwwf";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
python27Packages.numpy
|
||||
python27Packages.sympy
|
||||
python27Packages.six
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/firedrakeproject/fiat";
|
||||
description = "Copy of upstream FIAT for use with Firedrake.";
|
||||
license = licenses.lgpl3;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user