summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/json
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2009-05-05 23:06:01 +0000
committerAndres Löh <mail@andres-loeh.de>2009-05-05 23:06:01 +0000
commit33b76a9312cde13c0a766259ac753e3fd26abcda (patch)
treeda735886b1ce5f32e5cf73f1a697dca568b404b7 /pkgs/development/libraries/haskell/json
parent3adcaa95c48e2e36231d336915e39783736913ff (diff)
added json Haskell package; improved gtk2hs
svn path=/nixpkgs/trunk/; revision=15460
Diffstat (limited to 'pkgs/development/libraries/haskell/json')
-rw-r--r--pkgs/development/libraries/haskell/json/default.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/json/default.nix b/pkgs/development/libraries/haskell/json/default.nix
new file mode 100644
index 0000000000000..5a59e94396b8d
--- /dev/null
+++ b/pkgs/development/libraries/haskell/json/default.nix
@@ -0,0 +1,12 @@
+{cabal, mtl}:
+
+cabal.mkDerivation (self : {
+  pname = "json";
+  version = "0.4.3";
+  sha256 = "56192d1e922cc71ad1aaf31baea8ee7e1f1b862f95bc72f60548caee4a484a87";
+  propagatedBuildInputs = [mtl];
+  meta = {
+    description = "Support for serialising Haskell to and from JSON";
+  };
+})  
+