firedrake: Initial packaging

This commit is contained in:
Tyson Whitehead
2017-05-01 20:09:09 -04:00
parent e0577fa54e
commit a2f7eda6de
18 changed files with 607 additions and 0 deletions

24
firedrake/ufl.nix Normal file
View File

@@ -0,0 +1,24 @@
with import <nixpkgs> {};
python27Packages.buildPythonPackage rec {
version = "8c17257d325f5f040ad1cb74b866956ad42427ca";
name = "firedrake-ufl-${version}";
src = fetchFromGitHub {
owner = "firedrakeproject";
repo = "ufl";
rev = "${version}";
sha256 = "1ryjq5sknaw92z3zrrnfqcvkga3g071bgjf8j42acsh4iw4g6yg1";
};
propagatedBuildInputs = [
python27Packages.numpy
python27Packages.six
];
meta = {
homepage = "https://github.com/firedrakeproject/ufl";
description = "Copy of upstream UFL for use with Firedrake.";
license = licenses.lgpl3;
};
}