2012-04-19 08:11:50 -07:00
|
|
|
{ cabal, colour, dlist, fgl, filepath, polyparse, text
|
|
|
|
, 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-01-04 10:17:22 -08:00
|
|
|
version = "2999.15.0.1";
|
|
|
|
sha256 = "137d8n20fbpdz7az79gqharsfl293pl3xn444338i6blfi47ssdy";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2012-04-19 08:11:50 -07:00
|
|
|
colour dlist fgl filepath polyparse 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
|
|
|
})
|