nspr: 4.23 -> 4.24

This commit is contained in:
Andreas Rammhold
2020-01-04 15:12:53 +01:00
parent a013506910
commit 57f79dbd55
3 changed files with 5 additions and 5 deletions

View File

@@ -16,7 +16,7 @@
# backports of newer libraries for stable firefox >= 70
, nss_3_47_1
, sqlite_3_30_1
, nspr_4_23
, nspr_4_24
, debugBuild ? false
@@ -120,7 +120,7 @@ let
++ patches;
nss_pkg = if lib.versionAtLeast ffversion "71" then nss_3_47_1 else nss;
nspr_pkg = if lib.versionAtLeast ffversion "71" then nspr_4_23 else nspr;
nspr_pkg = if lib.versionAtLeast ffversion "71" then nspr_4_24 else nspr;
sqlite_pkg = if lib.versionAtLeast ffversion "70" then sqlite_3_30_1 else sqlite;
in

View File

@@ -2,7 +2,7 @@
, CoreServices ? null
, buildPackages }:
let version = "4.23"; in
let version = "4.24"; in
stdenv.mkDerivation {
pname = "nspr";
@@ -10,7 +10,7 @@ stdenv.mkDerivation {
src = fetchurl {
url = "mirror://mozilla/nspr/releases/v${version}/src/nspr-${version}.tar.gz";
sha256 = "193p6i2r6wvpb4i04a9pxbqkxcn8rbcmwl81m4yp5xgs6w8857ab";
sha256 = "1l0ksiny032jijgk0g76wf0kiq673i01izj7jrs2h5d1yq6rm9ch";
};
patches = [

View File

@@ -12809,7 +12809,7 @@ in
};
# newer nspr version for newer firefox stable releases
nspr_4_23 = callPackage ../development/libraries/nspr/nspr_4_23.nix {
nspr_4_24 = callPackage ../development/libraries/nspr/nspr_4_24.nix {
inherit (darwin.apple_sdk.frameworks) CoreServices;
};