summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorCallum Rogers <callumr@palantir.com>2014-09-21 22:46:30 +0100
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-21 22:59:46 +0100
commit837fef324df2020c169a037de3b9f65820975df7 (patch)
treebd07bf1542c2ad10238596bc21e3f691b45ce972 /pkgs/development
parent9b7a26843eb7c43debc1909e78f6af1173cab55e (diff)
downloadnixlib-837fef324df2020c169a037de3b9f65820975df7.tar
nixlib-837fef324df2020c169a037de3b9f65820975df7.tar.gz
nixlib-837fef324df2020c169a037de3b9f65820975df7.tar.bz2
nixlib-837fef324df2020c169a037de3b9f65820975df7.tar.lz
nixlib-837fef324df2020c169a037de3b9f65820975df7.tar.xz
nixlib-837fef324df2020c169a037de3b9f65820975df7.tar.zst
nixlib-837fef324df2020c169a037de3b9f65820975df7.zip
haskell-compdata-param: new package, 0.8.0.2
Closes #4198
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/compdata-param/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/compdata-param/default.nix b/pkgs/development/libraries/haskell/compdata-param/default.nix
new file mode 100644
index 000000000000..af822f1ba1c2
--- /dev/null
+++ b/pkgs/development/libraries/haskell/compdata-param/default.nix
@@ -0,0 +1,18 @@
+{ cabal, compdata, HUnit, mtl, testFramework, testFrameworkHunit
+, transformers
+}:
+
+cabal.mkDerivation (self: {
+  pname = "compdata-param";
+  version = "0.8.0.2";
+  sha256 = "0496i1vnawl7m7ymvf5hl3kxy352rnhxy2gni4xkfz36psnnr7fs";
+  buildDepends = [ compdata mtl transformers ];
+  testDepends = [
+    compdata HUnit mtl testFramework testFrameworkHunit transformers
+  ];
+  meta = {
+    description = "Parametric Compositional Data Types";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})