nixpkgs/pkgs/development/libraries/igraph/default.nix

38 lines
1.0 KiB
Nix
Raw Normal View History

2018-06-26 04:33:09 +01:00
{ stdenv, lib, fetchFromGitHub,
pkgconfig, autoreconfHook,
flex, yacc, zlib, libxml2 }:
stdenv.mkDerivation rec {
pname = "igraph";
version = "0.8.2";
2018-06-26 04:33:09 +01:00
src = fetchFromGitHub {
owner = "igraph";
repo = pname;
2018-06-26 04:33:09 +01:00
rev = version;
sha256 = "015yh9s19lmxm7l1ld8adlsqh1lrmzicl801saixdwl9w05hfva4";
2018-06-26 04:33:09 +01:00
};
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ flex yacc zlib libxml2 ];
# Normally, igraph wants us to call bootstrap.sh, which will call
# tools/getversion.sh. Instead, we're going to put the version directly
# where igraph wants, and then let autoreconfHook do the rest of the
# bootstrap. ~ C.
2018-06-26 04:33:09 +01:00
postPatch = ''
echo "${version}" > IGRAPH_VERSION
2018-06-26 04:33:09 +01:00
'';
doCheck = true;
2018-06-26 04:33:09 +01:00
meta = {
description = "The network analysis package";
homepage = "https://igraph.org/";
2018-06-26 04:33:09 +01:00
license = lib.licenses.gpl2;
# NB: Known to fail tests on aarch64.
2020-07-20 20:25:59 +01:00
platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin;
2018-06-26 04:33:09 +01:00
maintainers = [ lib.maintainers.MostAwesomeDude ];
};
}