Skip to content

Instantly share code, notes, and snippets.

@maurer
Created November 12, 2015 19:50
Show Gist options
  • Save maurer/93700d5a063f9e721d11 to your computer and use it in GitHub Desktop.
Save maurer/93700d5a063f9e721d11 to your computer and use it in GitHub Desktop.
{stdenv, libxml2, fetchurl}:
stdenv.mkDerivation rec {
name = "igraph";
version = "0.7.1";
buildInputs = [libxml2];
src = fetchurl {
url = "http://igraph.org/nightly/get/c/igraph-0.7.1.tar.gz";
sha256 = "1pxh8sdlirgvbvsw8v65h6prn7hlm45bfsl1yfcgd6rn4w706y6r";
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment