nixpkgs/pkgs/development/libraries/haskell/graphviz/default.nix
Peter Simons dbce2ffd0f Generated neater meta.description strings.
svn path=/nixpkgs/trunk/; revision=28492
2011-08-11 13:03:51 +00:00

24 lines
663 B
Nix

{ cabal, colour, extensibleExceptions, fgl, polyparse, transformers
}:
cabal.mkDerivation (self: {
pname = "graphviz";
version = "2999.11.0.0";
sha256 = "1ky8hi9vda8hli7dkvsmmbz9j1swkzsn548905asqz0i46kpspnk";
isLibrary = true;
isExecutable = true;
buildDepends = [
colour extensibleExceptions fgl polyparse transformers
];
meta = {
homepage = "http://projects.haskell.org/graphviz/";
description = "Graphviz bindings for Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})