e55ca0628f
- 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
20 lines
612 B
Nix
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 ];
|
|
};
|
|
})
|