3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/math/colpack/default.nix

33 lines
849 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoconf, automake, libtool, gettext }:
2017-10-29 09:18:18 +00:00
stdenv.mkDerivation rec {
pname = "ColPack";
version = "1.0.10";
name = pname + "-" + version;
src = fetchFromGitHub {
owner = "CSCsw";
repo = pname;
rev = "v" + version;
sha256 = "1p05vry940mrjp6236c0z83yizmw9pk6ly2lb7d8rpb7j9h03glr";
};
buildInputs = [ autoconf automake gettext libtool ];
configurePhase = ''
autoreconf -vif
./configure --prefix=$out --enable-openmp
'';
meta = with stdenv.lib; {
description = "A package comprising of implementations of algorithms for
vertex coloring and derivative computation";
homepage = "http://cscapes.cs.purdue.edu/coloringpage/software.htm#functionalities";
license = licenses.lgpl3;
2018-11-11 01:17:49 +00:00
platforms = platforms.linux;
2017-10-29 09:18:18 +00:00
maintainers = with maintainers; [ edwtjo ];
};
}