20 lines
637 B
Nix
20 lines
637 B
Nix
{ cabal, colour, dlist, fgl, filepath, polyparse, temporary, text
|
|
, transformers, wlPprintText
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "graphviz";
|
|
version = "2999.16.0.0";
|
|
sha256 = "1g4q4wyj5amz9xvgnqn143p5nq6m4a0lggxz7jn9l2hwp41bx1g8";
|
|
buildDepends = [
|
|
colour dlist fgl filepath polyparse temporary text transformers
|
|
wlPprintText
|
|
];
|
|
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 ];
|
|
};
|
|
})
|