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/metis.nix Normal file
View File

@@ -0,0 +1,24 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
version = "5.1.0-p4";
name = "metis-${version}";
src = fetchFromBitbucket {
owner = "petsc";
repo = "pkg-metis";
rev = "v${version}";
sha256 = "1mw87w7jz8kfi7jw3kjfagxbagh2x794z0aj3g9z7w3g6wdbvlrr";
};
buildInputs = [
cmake
];
makeFlags = [ "VERBOSE=1" ];
meta = {
homepage = "https://bitbucket.org/petsc/metis";
description = "A set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices.";
};
}