nixpkgs/pkgs/development/libraries/haskell/Graphalyze/default.nix
Peter Simons d701b71826 haskell-Graphalyze: updated to version 0.11.0.0
svn path=/nixpkgs/trunk/; revision=28310
2011-08-07 22:00:32 +00:00

15 lines
463 B
Nix

{cabal, bktrees, fgl, graphviz, pandoc} :
cabal.mkDerivation (self : {
pname = "Graphalyze";
version = "0.11.0.0";
sha256 = "1aplfd0qp7ypr9rh4v4x5g8f4b0d1w0dcgz7hgjm9haqcsv37a79";
propagatedBuildInputs = [ bktrees fgl graphviz pandoc ];
meta = {
description = "Graph-Theoretic Analysis library.";
license = "unknown";
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})