7f9f3672a4
This update obsoletes the requirement on Pandoc 1.6, which has subsequently been removed from the repository. svn path=/nixpkgs/trunk/; revision=28630
22 lines
572 B
Nix
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
|
|
];
|
|
};
|
|
})
|