summary refs log tree commit diff
path: root/pkgs/applications/misc/rxvt
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-07-28 15:35:01 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-07-28 15:35:01 +0000
commit749b8607ca3a6621d1aa37384c85e72369c64741 (patch)
treecc69ff74bd882a90f0747416deff9e989023a351 /pkgs/applications/misc/rxvt
parent27fe0c57f3f8ced50ac302d2d337cca454ed0efa (diff)
downloadnixpkgs-749b8607ca3a6621d1aa37384c85e72369c64741.tar
nixpkgs-749b8607ca3a6621d1aa37384c85e72369c64741.tar.gz
nixpkgs-749b8607ca3a6621d1aa37384c85e72369c64741.tar.bz2
nixpkgs-749b8607ca3a6621d1aa37384c85e72369c64741.tar.lz
nixpkgs-749b8607ca3a6621d1aa37384c85e72369c64741.tar.xz
nixpkgs-749b8607ca3a6621d1aa37384c85e72369c64741.tar.zst
nixpkgs-749b8607ca3a6621d1aa37384c85e72369c64741.zip
* More cleanup.
svn path=/nixpkgs/trunk/; revision=22795
Diffstat (limited to 'pkgs/applications/misc/rxvt')
-rw-r--r--pkgs/applications/misc/rxvt/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/applications/misc/rxvt/default.nix b/pkgs/applications/misc/rxvt/default.nix
index 58366c6aa04..13597f3ee9b 100644
--- a/pkgs/applications/misc/rxvt/default.nix
+++ b/pkgs/applications/misc/rxvt/default.nix
@@ -1,4 +1,5 @@
-args: with args;
+{ stdenv, fetchurl, libX11, libXt }:
+
 stdenv.mkDerivation {
   name = "rxvt-2.6.4";
 
@@ -10,8 +11,8 @@ stdenv.mkDerivation {
   buildInputs = [ libX11 libXt ];
 
   meta = { 
-      description = "colour vt102 terminal emulator with less features and lower memory consumption";
-      homepage = http://www.rxvt.org/;
-      license = "GPL";
+    description = "Colour vt102 terminal emulator with less features and lower memory consumption";
+    homepage = http://www.rxvt.org/;
+    license = "GPL";
   };
 }