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