nixpkgs/pkgs/development/libraries/haskell/graphviz/default.nix
Peter Simons e55ca0628f Updated Haskell packages.
- generic-deriving: updated to version 1.2.1
 - ghc-mod: updated to version 1.10.17
 - gitit: updated to version 0.10.0.1
 - graphviz: updated to version 2999.13.0.3
 - hsemail: updated to version 1.7.2
 - split: updated to version 0.1.4.3

svn path=/nixpkgs/trunk/; revision=34384
2012-06-08 13:38:20 +00:00

20 lines
612 B
Nix

{ cabal, colour, dlist, fgl, filepath, polyparse, text
, transformers, wlPprintText
}:
cabal.mkDerivation (self: {
pname = "graphviz";
version = "2999.13.0.3";
sha256 = "0rwjlwfa3s1vgh5mwzwmzq4s153iq338zy7jqi0qyxcs52illqq8";
buildDepends = [
colour dlist fgl filepath 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 ];
};
})