libgit2_0_27: move top-level entry into julia_10
This commit is contained in:
parent
4ae622152b
commit
99d0740a73
1 changed files with 14 additions and 15 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue