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