Merge pull request #49666 from averelld/rPackages.ps-build-fix

r-ps: patchShebangs in ./configure to fix build
This commit is contained in:
Peter Simons 2018-11-03 10:38:30 +01:00 committed by GitHub
commit d9fa1f9178
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -942,6 +942,10 @@ let
PKGCONFIG_LIBS = "-Wl,-rpath,${pkgs.openssl.out}/lib -L${pkgs.openssl.out}/lib -L${pkgs.cyrus_sasl.out}/lib -L${pkgs.zlib.out}/lib -lssl -lcrypto -lsasl2 -lz";
});
ps = old.ps.overrideDerivation (attrs: {
preConfigure = "patchShebangs configure";
});
rlang = old.rlang.overrideDerivation (attrs: {
preConfigure = "patchShebangs configure";
});