about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/graphviz
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-08-16 23:23:45 +0000
committerPeter Simons <simons@cryp.to>2011-08-16 23:23:45 +0000
commit8d20464e2746c4a1241bbe1b9a192a6c8b389d20 (patch)
treed28191d2104167d8def24ef1f64dc21cfb9a2079 /pkgs/development/libraries/haskell/graphviz
parentf01d5ea8f628e0b2a091d2a1f4cb68cec7754dc7 (diff)
haskell-graphviz: updated to version 2999.12.0.2
This update obsoletes the requirement for polyparse 1.4, which has
subsequently been removed from the repository.

svn path=/nixpkgs/trunk/; revision=28629
Diffstat (limited to 'pkgs/development/libraries/haskell/graphviz')
-rw-r--r--pkgs/development/libraries/haskell/graphviz/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/development/libraries/haskell/graphviz/default.nix b/pkgs/development/libraries/haskell/graphviz/default.nix
index 1f35fdf6bb9da..7669408867a47 100644
--- a/pkgs/development/libraries/haskell/graphviz/default.nix
+++ b/pkgs/development/libraries/haskell/graphviz/default.nix
@@ -1,18 +1,20 @@
-{ cabal, colour, extensibleExceptions, fgl, polyparse, transformers
+{ cabal, colour, dlist, extensibleExceptions, fgl, polyparse, text
+, transformers, wlPprintText
 }:
 
 cabal.mkDerivation (self: {
   pname = "graphviz";
-  version = "2999.11.0.0";
-  sha256 = "1ky8hi9vda8hli7dkvsmmbz9j1swkzsn548905asqz0i46kpspnk";
+  version = "2999.12.0.2";
+  sha256 = "0hjivsayxnkzh51rw80fr95hw7kfdpiw0gjq2hpnv1hfqmjrw4vy";
   isLibrary = true;
   isExecutable = true;
   buildDepends = [
-    colour extensibleExceptions fgl polyparse transformers
+    colour dlist extensibleExceptions fgl polyparse text transformers
+    wlPprintText
   ];
   meta = {
     homepage = "http://projects.haskell.org/graphviz/";
-    description = "Graphviz bindings for Haskell";
+    description = "Bindings to Graphviz for graph visualisation";
     license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;
     maintainers = [