24 lines
761 B
Nix
24 lines
761 B
Nix
{ cabal, colour, dlist, fgl, filepath, polyparse, QuickCheck
|
|
, temporary, text, transformers, wlPprintText
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "graphviz";
|
|
version = "2999.17.0.0";
|
|
sha256 = "1wi5yzs0b321as10h9awin87501njbd4ii40nak1fr534g1abhf5";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
colour dlist fgl filepath polyparse temporary text transformers
|
|
wlPprintText
|
|
];
|
|
testDepends = [ fgl filepath QuickCheck text ];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "http://projects.haskell.org/graphviz/";
|
|
description = "Bindings to Graphviz for graph visualisation";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|