about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/graphviz
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2010-10-13 21:18:35 +0000
committerAndres Löh <mail@andres-loeh.de>2010-10-13 21:18:35 +0000
commitb421bbd0eaff6e50b438255e6cbf3a42dd4c7197 (patch)
tree61bf0862ad3d8238b408cce6a66a477d3a6b7bd9 /pkgs/development/libraries/haskell/graphviz
parente82053ac947797f0bf49481a1acfc9aaa712b09c (diff)
Added a few Haskell packages as submitted by Ilya Cassina.
svn path=/nixpkgs/trunk/; revision=24269
Diffstat (limited to 'pkgs/development/libraries/haskell/graphviz')
-rw-r--r--pkgs/development/libraries/haskell/graphviz/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/graphviz/default.nix b/pkgs/development/libraries/haskell/graphviz/default.nix
new file mode 100644
index 0000000000000..f747d81e6c6d5
--- /dev/null
+++ b/pkgs/development/libraries/haskell/graphviz/default.nix
@@ -0,0 +1,13 @@
+{cabal, colour, fgl, polyparse, transformers, QuickCheck}:
+
+cabal.mkDerivation (self : {
+  pname = "graphviz";
+  version = "2999.10.0.1";
+  sha256 = "5a3aebd3874303dcf554aef3bf511dd22e72053a9672c823d1d820d2b90ca076";
+  propagatedBuildInputs = [colour fgl polyparse transformers QuickCheck];
+  meta = {
+    description = "Bindings for the Dot language (Graphviz)";
+    license = "BSD3";
+  };
+})  
+