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-08-17 12:39:37 +02:00
|
|
|
version = "2999.12.0.3";
|
|
|
|
sha256 = "0qvkmklf2wxac6j01fnh8r352b52xzhr8wryk1b9119wvcbli8md";
|
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
|
|
|
})
|