3
0
Fork 0
forked from mirrors/nixpkgs

colpack: init at 1.0.10

This commit is contained in:
Edward Tjörnhammar 2017-10-29 10:18:18 +01:00
parent 79dc3ea8da
commit 77d3869f27
No known key found for this signature in database
GPG key ID: 7B82CE4A866B6845
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, gettext }:
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;
maintainers = with maintainers; [ edwtjo ];
};
}

View file

@ -892,6 +892,8 @@ with pkgs;
colord-kde = libsForQt5.callPackage ../tools/misc/colord-kde {};
colpack = callPackage ../applications/science/math/colpack { };
consul = callPackage ../servers/consul { };
consul-ui = callPackage ../servers/consul/ui.nix { };