about summary refs log tree commit diff
path: root/pkgs/tools/text/gnused
diff options
context:
space:
mode:
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];
+}