about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-06-06 11:36:32 +0200
committerPeter Simons <simons@cryp.to>2014-06-09 10:26:59 +0200
commit056b9ba32ff597dc41db537e74be739fb6e375c4 (patch)
tree17f85f21eb2259ba4f801c01cc91e2b9982271b3 /pkgs/development
parentfdee6e37a6d37fd610288833b7ad89fbeca29ee9 (diff)
downloadnixlib-056b9ba32ff597dc41db537e74be739fb6e375c4.tar
nixlib-056b9ba32ff597dc41db537e74be739fb6e375c4.tar.gz
nixlib-056b9ba32ff597dc41db537e74be739fb6e375c4.tar.bz2
nixlib-056b9ba32ff597dc41db537e74be739fb6e375c4.tar.lz
nixlib-056b9ba32ff597dc41db537e74be739fb6e375c4.tar.xz
nixlib-056b9ba32ff597dc41db537e74be739fb6e375c4.tar.zst
nixlib-056b9ba32ff597dc41db537e74be739fb6e375c4.zip
haskell-adjunctions: update to version 4.1.0.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/adjunctions/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/libraries/haskell/adjunctions/default.nix b/pkgs/development/libraries/haskell/adjunctions/default.nix
index d0804959ccb6..74e564af62a6 100644
--- a/pkgs/development/libraries/haskell/adjunctions/default.nix
+++ b/pkgs/development/libraries/haskell/adjunctions/default.nix
@@ -1,14 +1,15 @@
 { cabal, comonad, contravariant, distributive, free, mtl
-, semigroupoids, semigroups, tagged, transformers, void
+, profunctors, semigroupoids, semigroups, tagged, transformers
+, void
 }:
 
 cabal.mkDerivation (self: {
   pname = "adjunctions";
-  version = "4.0.3";
-  sha256 = "0rh3vffbq407k9g95dingw6zqq3fk87pknyrqj1mrbmgrnllr8k0";
+  version = "4.1.0.1";
+  sha256 = "18p2pabid7dx96qcpd2ywv5mhjp55srhm5g013pn697jcxyq2xiv";
   buildDepends = [
-    comonad contravariant distributive free mtl semigroupoids
-    semigroups tagged transformers void
+    comonad contravariant distributive free mtl profunctors
+    semigroupoids semigroups tagged transformers void
   ];
   meta = {
     homepage = "http://github.com/ekmett/adjunctions/";