aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/tools/parsing/bison/3.x.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-06-02 11:30:41 +0200
committerVladimír Čunát <vcunat@gmail.com>2018-06-02 11:33:22 +0200
commit52fdec3c1dedaf9c7396d0ee5532135a64ed2075 (patch)
tree324f367d51e24ba574cc4220644dbab2c4821760 /pkgs/development/tools/parsing/bison/3.x.nix
parent5bedf2351412b4cec838badcff3cce10aa92a9d8 (diff)
bison: drop non-applying patch on Darwin
The Darwin case seems newly fixed in the tarballs now. Beware: the affected file is *not* in bison's git repo (gitignored), but it is in tarballs and is used during build (yummy!)
Diffstat (limited to '')
-rw-r--r--pkgs/development/tools/parsing/bison/3.x.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/parsing/bison/3.x.nix b/pkgs/development/tools/parsing/bison/3.x.nix
index 921f5d2d948c..287bb8beb524 100644
--- a/pkgs/development/tools/parsing/bison/3.x.nix
+++ b/pkgs/development/tools/parsing/bison/3.x.nix
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
sha256 = "0rnml9spd6p0i5qy9g4r82drwdr09r1z9cf4p89agbrkxqmrsffd";
};
- patches = stdenv.lib.optional hostPlatform.isDarwin stdenv.secure-format-patch;
+ patches = []; # remove on another rebuild
nativeBuildInputs = [ m4 perl ] ++ stdenv.lib.optional stdenv.isSunOS help2man;
propagatedBuildInputs = [ m4 ];