about summary refs log tree commit diff
path: root/pkgs/tools/text/gnused
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-24 23:05:12 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-24 23:05:12 +0000
commit4d3059721df7164445e384c5644f32623df0d664 (patch)
tree95c37e97221fb777d8abbde8b849550c7385d89e /pkgs/tools/text/gnused
parentf86c11815f1377fdda2c1ee71d65d1e89d2adffe (diff)
downloadnixlib-4d3059721df7164445e384c5644f32623df0d664.tar
nixlib-4d3059721df7164445e384c5644f32623df0d664.tar.gz
nixlib-4d3059721df7164445e384c5644f32623df0d664.tar.bz2
nixlib-4d3059721df7164445e384c5644f32623df0d664.tar.lz
nixlib-4d3059721df7164445e384c5644f32623df0d664.tar.xz
nixlib-4d3059721df7164445e384c5644f32623df0d664.tar.zst
nixlib-4d3059721df7164445e384c5644f32623df0d664.zip
* bash 2.0, findutils 4.2.28.
* Some Nix expression simplifications.  Sense and simplicity!

svn path=/nixpkgs/trunk/; revision=6836
Diffstat (limited to 'pkgs/tools/text/gnused')
-rw-r--r--pkgs/tools/text/gnused/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/text/gnused/default.nix b/pkgs/tools/text/gnused/default.nix
index d560aabfbe0a..9395fcd1a401 100644
--- a/pkgs/tools/text/gnused/default.nix
+++ b/pkgs/tools/text/gnused/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl}:
 
-stdenv.mkDerivation ({
+stdenv.mkDerivation {
   name = "gnused-4.1.5";
   src = fetchurl {
     url = http://nix.cs.uu.nl/dist/tarballs/sed-4.1.5.tar.gz;
     md5 = "7a1cbbbb3341287308e140bd4834c3ba";
   };
-} // 
   # !!! hack: this should go away in gnused > 4.1.5
-  (if stdenv.system != "i686-linux" then {patches = [./gettext-fix.patch];} else {}))
+  patches = [./gettext-fix.patch];
+}