about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-01-22 16:06:23 +0100
committerPeter Simons <simons@cryp.to>2013-01-22 16:06:23 +0100
commit2ca9fc6bd7f31e8d63900c3c5d716aa683f04852 (patch)
tree5ff7042a910ec7a69b692e6760072756cfa9b358 /pkgs
parent15f7853a9e0ec0e1f886b5a9e30d965430d5b23f (diff)
downloadnixlib-2ca9fc6bd7f31e8d63900c3c5d716aa683f04852.tar
nixlib-2ca9fc6bd7f31e8d63900c3c5d716aa683f04852.tar.gz
nixlib-2ca9fc6bd7f31e8d63900c3c5d716aa683f04852.tar.bz2
nixlib-2ca9fc6bd7f31e8d63900c3c5d716aa683f04852.tar.lz
nixlib-2ca9fc6bd7f31e8d63900c3c5d716aa683f04852.tar.xz
nixlib-2ca9fc6bd7f31e8d63900c3c5d716aa683f04852.tar.zst
nixlib-2ca9fc6bd7f31e8d63900c3c5d716aa683f04852.zip
haskell-groupoids: add version 3.0.1.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/groupoids/default.nix14
-rw-r--r--pkgs/top-level/haskell-packages.nix2
2 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/groupoids/default.nix b/pkgs/development/libraries/haskell/groupoids/default.nix
new file mode 100644
index 000000000000..4c085c0ae23b
--- /dev/null
+++ b/pkgs/development/libraries/haskell/groupoids/default.nix
@@ -0,0 +1,14 @@
+{ cabal, semigroupoids }:
+
+cabal.mkDerivation (self: {
+  pname = "groupoids";
+  version = "3.0.1.1";
+  sha256 = "0r4xjyq7icd52nas27bhr5k8q7li6lba8mlkcipghhsgxsyjfp63";
+  buildDepends = [ semigroupoids ];
+  meta = {
+    homepage = "http://github.com/ekmett/groupoids/";
+    description = "Haskell 98 Groupoids";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+  };
+})
diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix
index 2ac75689db99..2cddb75c0802 100644
--- a/pkgs/top-level/haskell-packages.nix
+++ b/pkgs/top-level/haskell-packages.nix
@@ -912,6 +912,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
     polyparse = self.polyparse_1_7;
   };
 
+  groupoids = callPackage ../development/libraries/haskell/groupoids {};
+
   hakyll = callPackage ../development/libraries/haskell/hakyll {};
 
   hamlet = callPackage ../development/libraries/haskell/hamlet {};