nixpkgs/pkgs/development/libraries/haskell/graphviz/default.nix
Peter Simons 9faf54888d haskell-graphviz: updated to version 2999.12.0.3
svn path=/nixpkgs/trunk/; revision=28639
2011-08-17 10:39:37 +00:00

26 lines
734 B
Nix

{ cabal, colour, dlist, extensibleExceptions, fgl, polyparse, text
, transformers, wlPprintText
}:
cabal.mkDerivation (self: {
pname = "graphviz";
version = "2999.12.0.3";
sha256 = "0qvkmklf2wxac6j01fnh8r352b52xzhr8wryk1b9119wvcbli8md";
isLibrary = true;
isExecutable = true;
buildDepends = [
colour dlist extensibleExceptions fgl polyparse 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
self.stdenv.lib.maintainers.simons
];
};
})