about summary refs log tree commit diff
path: root/pkgs/development/libraries/gettext
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-08-09 17:05:20 +1000
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-08-09 17:41:12 +0200
commit19699d691ce4ba524a1fa93e974a6242f08817d9 (patch)
tree510c03574a7c50a444c070db9a6ee81d8512cba1 /pkgs/development/libraries/gettext
parent6a201763b472b53355234477b202dcc6aeedaebc (diff)
gettext: drop darwin patch
Diffstat (limited to 'pkgs/development/libraries/gettext')
-rw-r--r--pkgs/development/libraries/gettext/default.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix
index 2f956f4baa440..0dcc42dc526a9 100644
--- a/pkgs/development/libraries/gettext/default.nix
+++ b/pkgs/development/libraries/gettext/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, libiconv, xz, fetchpatch }:
+{ stdenv, lib, fetchurl, libiconv, xz }:
 
 # Note: this package is used for bootstrapping fetchurl, and thus
 # cannot use fetchpatch! All mutable patches (generated by GitHub or
@@ -15,12 +15,7 @@ stdenv.mkDerivation rec {
   };
   patches = [
     ./absolute-paths.diff
-  ]
-  ++ lib.optional stdenv.isDarwin
-      (fetchpatch {
-        url = "https://git.savannah.gnu.org/cgit/gettext.git/patch?id=ec0e6b307456ceab352669ae6bccca9702108753";
-        sha256 = "0xqs01c7xl7vmw6bqvsmrzxxjxk2a4spcdpmlwm3b4hi2wc2lxnf";
-      });
+  ];
 
   outputs = [ "out" "man" "doc" "info" ];