nixpkgs/pkgs/development/libraries/haskell/Graphalyze/default.nix
Peter Simons 7f9f3672a4 haskell-Graphalyze: updated to version 0.12.0.0
This update obsoletes the requirement on Pandoc 1.6, which has
subsequently been removed from the repository.

svn path=/nixpkgs/trunk/; revision=28630
2011-08-16 23:23:49 +00:00

22 lines
572 B
Nix

{ cabal, bktrees, extensibleExceptions, fgl, graphviz, pandoc
, random, text, time
}:
cabal.mkDerivation (self: {
pname = "Graphalyze";
version = "0.12.0.0";
sha256 = "0lsbwf08flaifdddbg6d3ndrb2d1wzs943hk7n0m316bvahq6kgx";
buildDepends = [
bktrees extensibleExceptions fgl graphviz pandoc random text 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
];
};
})