igraph: init at 0.7.1
This commit is contained in:
parent
ee903f23cd
commit
f20100a3e4
31
pkgs/development/libraries/igraph/default.nix
Normal file
31
pkgs/development/libraries/igraph/default.nix
Normal file
@ -0,0 +1,31 @@
|
||||
{ stdenv, lib, fetchFromGitHub,
|
||||
pkgconfig, autoreconfHook,
|
||||
flex, yacc, zlib, libxml2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "igraph";
|
||||
version = "0.7.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "igraph";
|
||||
repo = name;
|
||||
rev = version;
|
||||
sha256 = "1wsy0r511gk069il6iqjs27q8cjvqz20gf0a7inybx1bw84845z8";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
||||
buildInputs = [ flex yacc zlib libxml2 ];
|
||||
|
||||
# This file is normally generated by igraph's bootstrap.sh, but we can do it
|
||||
# ourselves. ~ C.
|
||||
postPatch = ''
|
||||
echo "${version}" > VERSION
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "The network analysis package";
|
||||
homepage = http://igraph.org/;
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = [ lib.maintainers.MostAwesomeDude ];
|
||||
};
|
||||
}
|
@ -21241,6 +21241,8 @@ with pkgs;
|
||||
|
||||
idsk = callPackage ../tools/filesystems/idsk { };
|
||||
|
||||
igraph = callPackage ../development/libraries/igraph { };
|
||||
|
||||
illum = callPackage ../tools/system/illum { };
|
||||
|
||||
# using the new configuration style proposal which is unstable
|
||||
|
Loading…
Reference in New Issue
Block a user