summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-08-24 13:08:46 +0200
committerPeter Simons <simons@cryp.to>2014-08-24 20:28:12 +0200
commitd72b7796d1a479cae6e9c18b3ae65677ffaee6b9 (patch)
tree6d0d4f12dba6fbb9e24d772f2254a8738ff5cd25 /pkgs/development
parentcbc67e17043adc8c019d30d961986233571b7aba (diff)
downloadnixlib-d72b7796d1a479cae6e9c18b3ae65677ffaee6b9.tar
nixlib-d72b7796d1a479cae6e9c18b3ae65677ffaee6b9.tar.gz
nixlib-d72b7796d1a479cae6e9c18b3ae65677ffaee6b9.tar.bz2
nixlib-d72b7796d1a479cae6e9c18b3ae65677ffaee6b9.tar.lz
nixlib-d72b7796d1a479cae6e9c18b3ae65677ffaee6b9.tar.xz
nixlib-d72b7796d1a479cae6e9c18b3ae65677ffaee6b9.tar.zst
nixlib-d72b7796d1a479cae6e9c18b3ae65677ffaee6b9.zip
haskell-MonadRandom: add version 0.2
We cannot use it anywhere except HEAD, unfortunately, because the
package depends on transformers 0.4.x, which is a core package and
cannot be updated.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/haskell/MonadRandom/0.1.13.nix (renamed from pkgs/development/libraries/haskell/MonadRandom/default.nix)0
-rw-r--r--pkgs/development/libraries/haskell/MonadRandom/0.2.nix15
2 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/libraries/haskell/MonadRandom/default.nix b/pkgs/development/libraries/haskell/MonadRandom/0.1.13.nix
index fb2415fd6fa0..fb2415fd6fa0 100644
--- a/pkgs/development/libraries/haskell/MonadRandom/default.nix
+++ b/pkgs/development/libraries/haskell/MonadRandom/0.1.13.nix
diff --git a/pkgs/development/libraries/haskell/MonadRandom/0.2.nix b/pkgs/development/libraries/haskell/MonadRandom/0.2.nix
new file mode 100644
index 000000000000..e40a3d8a2c65
--- /dev/null
+++ b/pkgs/development/libraries/haskell/MonadRandom/0.2.nix
@@ -0,0 +1,15 @@
+# This file was auto-generated by cabal2nix. Please do NOT edit manually!
+
+{ cabal, mtl, random, transformers }:
+
+cabal.mkDerivation (self: {
+  pname = "MonadRandom";
+  version = "0.2";
+  sha256 = "0wxn1n47mx7npxzc6iv2hj3ikj3d0s11xsndz2gfm9y5pwm3h44c";
+  buildDepends = [ mtl random transformers ];
+  meta = {
+    description = "Random-number generation monad";
+    license = "unknown";
+    platforms = self.ghc.meta.platforms;
+  };
+})