nixpkgs/pkgs/development/libraries/haskell/Graphalyze/default.nix
Peter Simons dbce2ffd0f Generated neater meta.description strings.
svn path=/nixpkgs/trunk/; revision=28492
2011-08-11 13:03:51 +00:00

21 lines
545 B
Nix

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