summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorAndres Löh <mail@andres-loeh.de>2011-06-23 18:35:24 +0000
committerAndres Löh <mail@andres-loeh.de>2011-06-23 18:35:24 +0000
commita0982e02fd33e53b35a6496c20945bf67018ff5a (patch)
tree7e3e76c7389cfde5b743267d32eaacea96f52a9d /pkgs/applications
parente908e9241335404847e41cff1a948cdcf283d243 (diff)
downloadnixpkgs-a0982e02fd33e53b35a6496c20945bf67018ff5a.tar
nixpkgs-a0982e02fd33e53b35a6496c20945bf67018ff5a.tar.gz
nixpkgs-a0982e02fd33e53b35a6496c20945bf67018ff5a.tar.bz2
nixpkgs-a0982e02fd33e53b35a6496c20945bf67018ff5a.tar.lz
nixpkgs-a0982e02fd33e53b35a6496c20945bf67018ff5a.tar.xz
nixpkgs-a0982e02fd33e53b35a6496c20945bf67018ff5a.tar.zst
nixpkgs-a0982e02fd33e53b35a6496c20945bf67018ff5a.zip
Added xmonads-extra (thanks to chaoflow).
svn path=/nixpkgs/trunk/; revision=27534
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/window-managers/xmonad/xmonad-extras.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/pkgs/applications/window-managers/xmonad/xmonad-extras.nix b/pkgs/applications/window-managers/xmonad/xmonad-extras.nix
new file mode 100644
index 00000000000..f31a766fce9
--- /dev/null
+++ b/pkgs/applications/window-managers/xmonad/xmonad-extras.nix
@@ -0,0 +1,12 @@
+{cabal, xmonad, xmonadContrib, X11, utf8String, X11Xft}:
+
+cabal.mkDerivation (self : {
+  pname = "xmonad-extras";
+  version = "0.9.2";
+  sha256 = "54b41a4c59ff3d68b3a214d727fb5675fa7c1b90090d99e58ecae62b3dfdd701";
+  propagatedBuildInputs = [X11 xmonad xmonadContrib utf8String X11Xft];
+  noHaddock = true;
+  meta = {
+    description = "Various modules for xmonad that cannot be added to xmonad-contrib because of additional dependencies";
+  };
+})