libgit2_0_27: move top-level entry into julia_10

This commit is contained in:
Sandro Jäckel
2022-02-16 00:19:58 +01:00
committed by Sandro Jäckel
parent 4ae622152b
commit 99d0740a73
+14 -15
View File
@@ -12631,7 +12631,20 @@ with pkgs;
julia_10 = callPackage ../development/compilers/julia/1.0.nix {
gmp = gmp6;
inherit (darwin.apple_sdk.frameworks) ApplicationServices CoreServices;
libgit2 = libgit2_0_27;
libgit2 = libgit2.overrideAttrs (_: rec {
version = "0.27.10";
src = fetchFromGitHub {
owner = "libgit2";
repo = "libgit2";
rev = "v${version}";
sha256 = "09jz2fzv0zl5058s0g1cpnw87a2rgg8wnjwlygi18i2n9nn6m0ad";
};
patches = [];
meta.knownVulnerabilities = [
"CVE-2020-12278"
"CVE-2020-12279"
];
});
};
julia_15 = callPackage ../development/compilers/julia/1.5.nix {
@@ -16721,20 +16734,6 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
libgit2_0_27 = libgit2.overrideAttrs (_: rec {
version = "0.27.10";
src = fetchFromGitHub {
owner = "libgit2";
repo = "libgit2";
rev = "v${version}";
sha256 = "09jz2fzv0zl5058s0g1cpnw87a2rgg8wnjwlygi18i2n9nn6m0ad";
};
meta.knownVulnerabilities = [
"CVE-2020-12278"
"CVE-2020-12279"
];
});
libgit2_1_1 = libgit2.overrideAttrs (_: rec {
version = "1.1.1";
src = fetchFromGitHub {