mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
colpack: init at 1.0.10
This commit is contained in:
parent
79dc3ea8da
commit
77d3869f27
31
pkgs/applications/science/math/colpack/default.nix
Normal file
31
pkgs/applications/science/math/colpack/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user