mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
nss: removed aarch64 patch
With the update to 3.36 the patch introduced with e96473b is no longer required.
This commit is contained in:
parent
c0e48427c6
commit
4320c1151d
@ -1,13 +1,6 @@
|
||||
{ stdenv, fetchurl, nspr, perl, zlib, sqlite, fixDarwinDylibNames }:
|
||||
|
||||
let
|
||||
|
||||
# Fix aarch64 build, shouldn't be needed after 3.35
|
||||
aarch64Patch = fetchurl {
|
||||
url = https://hg.mozilla.org/projects/nss/raw-rev/74e679158d1b;
|
||||
sha256 = "1lhs4h32mb2al3z461yylk227nid769di1pdjr7p0kqm2z1qm3jq";
|
||||
};
|
||||
|
||||
nssPEM = fetchurl {
|
||||
url = http://dev.gentoo.org/~polynomial-c/mozilla/nss-3.15.4-pem-support-20140109.patch.xz;
|
||||
sha256 = "10ibz6y0hknac15zr6dw4gv9nb5r5z9ym6gq18j3xqx7v7n3vpdw";
|
||||
@ -29,8 +22,6 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
prePatch = ''
|
||||
xz -d < ${nssPEM} | patch -p1
|
||||
'' + stdenv.lib.optionalString stdenv.isAarch64 ''
|
||||
(cd nss && patch -p1 < ${aarch64Patch})
|
||||
'';
|
||||
|
||||
patches =
|
||||
|
Loading…
Reference in New Issue
Block a user