summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/QuickCheck
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2011-08-05 08:52:35 +0000
committerAndres Löh <mail@andres-loeh.de>2011-08-05 08:52:35 +0000
commit8fdb3c9e630f9956db310596b1fea6c4013a04f5 (patch)
treeecaecd5aee47c84ce1f5b35a5f3327b954e3acc4 /pkgs/development/libraries/haskell/QuickCheck
parentb01cd125d45a777d7fe1e1c2daa28f5fffbb2df6 (diff)
downloadnixpkgs-8fdb3c9e630f9956db310596b1fea6c4013a04f5.tar
nixpkgs-8fdb3c9e630f9956db310596b1fea6c4013a04f5.tar.gz
nixpkgs-8fdb3c9e630f9956db310596b1fea6c4013a04f5.tar.bz2
nixpkgs-8fdb3c9e630f9956db310596b1fea6c4013a04f5.tar.lz
nixpkgs-8fdb3c9e630f9956db310596b1fea6c4013a04f5.tar.xz
nixpkgs-8fdb3c9e630f9956db310596b1fea6c4013a04f5.tar.zst
nixpkgs-8fdb3c9e630f9956db310596b1fea6c4013a04f5.zip
Make ghc-7.0.4 the default. Add experimental ghc-7.2.1rc1.
svn path=/nixpkgs/trunk/; revision=28163
Diffstat (limited to 'pkgs/development/libraries/haskell/QuickCheck')
-rw-r--r--pkgs/development/libraries/haskell/QuickCheck/2.4.0.1.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/haskell/QuickCheck/2.4.0.1.nix b/pkgs/development/libraries/haskell/QuickCheck/2.4.0.1.nix
index 6a2a5470cd7..44c1d537879 100644
--- a/pkgs/development/libraries/haskell/QuickCheck/2.4.0.1.nix
+++ b/pkgs/development/libraries/haskell/QuickCheck/2.4.0.1.nix
@@ -1,10 +1,10 @@
-{cabal, mtl}:
+{cabal, mtl, random}:
 
 cabal.mkDerivation (self : {
   pname = "QuickCheck";
   version = "2.4.0.1"; # Haskell Platform 2011.2.0.0
   sha256 = "1x7jc2svpxbll8qkrbswh5q59sqcjf2v5a6jnqslf5gwr5qpq18r";
-  propagatedBuildInputs = [mtl];
+  propagatedBuildInputs = [mtl random];
   meta = {
     description = "Automatic testing of Haskell programs";
     license = "BSD";