rPackages.keyring: fix build

This commit is contained in:
Justin Bedo 2021-10-12 07:42:01 +11:00
parent 95c7c9555a
commit 6dbe815676
No known key found for this signature in database
GPG Key ID: 2C18202C56C182BD

View File

@ -1034,6 +1034,12 @@ let
buildInputs = [ libsodium.dev ] ++ attrs.buildInputs;
});
keyring = old.keyring.overrideDerivation (attrs: {
preConfigure = ''
patchShebangs configure
'';
});
Rhtslib = old.Rhtslib.overrideDerivation (attrs: {
preConfigure = ''
substituteInPlace R/zzz.R --replace "-lcurl" "-L${pkgs.curl.out}/lib -lcurl"