summary refs log tree commit diff
path: root/pkgs/shells/bash
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2019-01-09 08:28:29 +0000
committerJörg Thalheim <joerg@thalheim.io>2019-01-09 08:28:29 +0000
commit26c7c59c0d4cb5c129623c1f7b8a5b42abf5f4a3 (patch)
treef16df7cff875c46fcceeab9ad62e8d8ba15f98dc /pkgs/shells/bash
parent4d24a84d8248138cc9403fafffeeeec1330c48f6 (diff)
downloadnixpkgs-26c7c59c0d4cb5c129623c1f7b8a5b42abf5f4a3.tar
nixpkgs-26c7c59c0d4cb5c129623c1f7b8a5b42abf5f4a3.tar.gz
nixpkgs-26c7c59c0d4cb5c129623c1f7b8a5b42abf5f4a3.tar.bz2
nixpkgs-26c7c59c0d4cb5c129623c1f7b8a5b42abf5f4a3.tar.lz
nixpkgs-26c7c59c0d4cb5c129623c1f7b8a5b42abf5f4a3.tar.xz
nixpkgs-26c7c59c0d4cb5c129623c1f7b8a5b42abf5f4a3.tar.zst
nixpkgs-26c7c59c0d4cb5c129623c1f7b8a5b42abf5f4a3.zip
bash: cygwin patch no longer applies
Diffstat (limited to 'pkgs/shells/bash')
-rw-r--r--pkgs/shells/bash/5.0.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/shells/bash/5.0.nix b/pkgs/shells/bash/5.0.nix
index ab997eb6985..b78282ab6e4 100644
--- a/pkgs/shells/bash/5.0.nix
+++ b/pkgs/shells/bash/5.0.nix
@@ -43,8 +43,7 @@ stdenv.mkDerivation rec {
 
   patchFlags = "-p0";
 
-  patches = upstreamPatches
-    ++ optional stdenv.hostPlatform.isCygwin ./cygwin-bash-4.4.11-2.src.patch;
+  patches = upstreamPatches;
 
   configureFlags = [
     (if interactive then "--with-installed-readline" else "--disable-readline")