2013-02-14 03:42:08 -08:00
|
|
|
{ cabal, colour, dlist, fgl, filepath, polyparse, temporary, text
|
2012-04-19 08:11:50 -07:00
|
|
|
, transformers, wlPprintText
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2010-10-13 14:18:35 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-10-13 14:18:35 -07:00
|
|
|
pname = "graphviz";
|
2013-02-14 03:42:08 -08:00
|
|
|
version = "2999.16.0.0";
|
|
|
|
sha256 = "1g4q4wyj5amz9xvgnqn143p5nq6m4a0lggxz7jn9l2hwp41bx1g8";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2013-02-14 03:42:08 -08:00
|
|
|
colour dlist fgl filepath polyparse temporary text transformers
|
|
|
|
wlPprintText
|
2011-08-09 16:00:20 -07:00
|
|
|
];
|
2010-10-13 14:18:35 -07:00
|
|
|
meta = {
|
2011-08-07 15:02:21 -07:00
|
|
|
homepage = "http://projects.haskell.org/graphviz/";
|
2011-08-16 16:23:45 -07:00
|
|
|
description = "Bindings to Graphviz for graph visualisation";
|
2011-08-07 15:02:21 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-10-13 14:18:35 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|