summary refs log tree commit diff
path: root/pkgs/applications/window-managers/xmonad
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-08-12 00:18:56 +0000
committerPeter Simons <simons@cryp.to>2011-08-12 00:18:56 +0000
commit468c5dbc5c7ff11c678c2d46d40846b2290724de (patch)
tree187db210afe97a34baf42f34163e66c0f52acbff /pkgs/applications/window-managers/xmonad
parentb5dcc70218afd874e1daac65126f97923115978b (diff)
downloadnixpkgs-468c5dbc5c7ff11c678c2d46d40846b2290724de.tar
nixpkgs-468c5dbc5c7ff11c678c2d46d40846b2290724de.tar.gz
nixpkgs-468c5dbc5c7ff11c678c2d46d40846b2290724de.tar.bz2
nixpkgs-468c5dbc5c7ff11c678c2d46d40846b2290724de.tar.lz
nixpkgs-468c5dbc5c7ff11c678c2d46d40846b2290724de.tar.xz
nixpkgs-468c5dbc5c7ff11c678c2d46d40846b2290724de.tar.zst
nixpkgs-468c5dbc5c7ff11c678c2d46d40846b2290724de.zip
The 'random' library is no longer a core library in GHC 7.2.1. For older
versions of the compiler, haskell-packages.nix provides a null attribute.

svn path=/nixpkgs/trunk/; revision=28500
Diffstat (limited to 'pkgs/applications/window-managers/xmonad')
-rw-r--r--pkgs/applications/window-managers/xmonad/xmonad-contrib.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/window-managers/xmonad/xmonad-contrib.nix b/pkgs/applications/window-managers/xmonad/xmonad-contrib.nix
index 25d55fc73f0..a1e077ff75d 100644
--- a/pkgs/applications/window-managers/xmonad/xmonad-contrib.nix
+++ b/pkgs/applications/window-managers/xmonad/xmonad-contrib.nix
@@ -1,4 +1,5 @@
-{ cabal, X11, X11Xft, extensibleExceptions, mtl, utf8String, xmonad
+{ cabal, X11, X11Xft, extensibleExceptions, mtl, random, utf8String
+, xmonad
 }:
 
 cabal.mkDerivation (self: {
@@ -6,7 +7,7 @@ cabal.mkDerivation (self: {
   version = "0.9.2";
   sha256 = "06hg5j4w8iz62wmyygq4c7xcbi9dxlhhh3dbic438cjk7c0w1h5p";
   buildDepends = [
-    X11 X11Xft extensibleExceptions mtl utf8String xmonad
+    X11 X11Xft extensibleExceptions mtl random utf8String xmonad
   ];
   meta = {
     homepage = "http://xmonad.org/";