summary refs log tree commit diff
path: root/pkgs/applications/window-managers/ratpoison
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2011-02-02 13:58:18 +0000
committerPeter Simons <simons@cryp.to>2011-02-02 13:58:18 +0000
commit7689a5d7a795d4a5625108e200097385998e6981 (patch)
tree2bcd0bd0303a052d4791367d3f2bb441251aeaa0 /pkgs/applications/window-managers/ratpoison
parenta3fe61586c2f240affe3b4d53985ec0a9ee8057b (diff)
downloadnixpkgs-7689a5d7a795d4a5625108e200097385998e6981.tar
nixpkgs-7689a5d7a795d4a5625108e200097385998e6981.tar.gz
nixpkgs-7689a5d7a795d4a5625108e200097385998e6981.tar.bz2
nixpkgs-7689a5d7a795d4a5625108e200097385998e6981.tar.lz
nixpkgs-7689a5d7a795d4a5625108e200097385998e6981.tar.xz
nixpkgs-7689a5d7a795d4a5625108e200097385998e6981.tar.zst
nixpkgs-7689a5d7a795d4a5625108e200097385998e6981.zip
pkgs/applications/window-managers/ratpoison: added dependency on perl, which is required by rpws
svn path=/nixpkgs/trunk/; revision=25761
Diffstat (limited to 'pkgs/applications/window-managers/ratpoison')
-rw-r--r--pkgs/applications/window-managers/ratpoison/default.nix13
1 files changed, 5 insertions, 8 deletions
diff --git a/pkgs/applications/window-managers/ratpoison/default.nix b/pkgs/applications/window-managers/ratpoison/default.nix
index cec59ab6f6b..df8c97466ff 100644
--- a/pkgs/applications/window-managers/ratpoison/default.nix
+++ b/pkgs/applications/window-managers/ratpoison/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, libX11, inputproto, libXt, libXpm, libXft, fontconfig
-, libXtst, xextproto, readline, libXi, pkgconfig, autoconf, automake }:
+, libXtst, xextproto, readline, libXi, pkgconfig, perl, autoconf, automake }:
 
 stdenv.mkDerivation rec {
   name = "ratpoison-1.4.5";
@@ -16,13 +16,11 @@ stdenv.mkDerivation rec {
        })
     ];
 
-  preConfigure = "autoreconf -vf";
+  preConfigure = "autoreconf -vf";	# needed because of the patch above
 
   buildInputs =
-    [ libX11 inputproto libXt
-      libXpm libXft fontconfig libXtst
-      xextproto readline libXi pkgconfig
-      autoconf automake  # needed because of the patch above
+    [ libX11 inputproto libXt libXpm libXft fontconfig libXtst
+      xextproto readline libXi pkgconfig perl autoconf automake
     ];
 
   meta = {
@@ -46,8 +44,7 @@ stdenv.mkDerivation rec {
 
     homepage = http://www.nongnu.org/ratpoison/;
 
-    maintainers = [ stdenv.lib.maintainers.ludo ];
+    maintainers = [ stdenv.lib.maintainers.ludo stdenv.lib.maintainers.simons ];
     platforms = stdenv.lib.platforms.gnu;  # arbitrary choice
   };
 }
-