Show More
@@ -1,11 +1,18 b'' | |||
|
1 | 1 | self: super: { |
|
2 | 2 | |
|
3 | 3 | # bump GIT version |
|
4 | git = super.lib.overrideDerivation super.git (oldAttrs: { | |
|
5 | name = "git-2.27.0"; | |
|
4 | git = | |
|
5 | let | |
|
6 | gitWithoutPerl = super.git.override { | |
|
7 | #perlSupport = false; | |
|
8 | }; | |
|
9 | in | |
|
10 | super.lib.overrideDerivation gitWithoutPerl (oldAttrs: { | |
|
11 | ||
|
12 | name = "git-2.30.0"; | |
|
6 | 13 | src = self.fetchurl { |
|
7 |
url = "https://www.kernel.org/pub/software/scm/git/git-2. |
|
|
8 | sha256 = "1ybk39ylvs32lywq7ra4l2kdr5izc80r9461hwfnw8pssxs9gjkk"; | |
|
14 | url = "https://www.kernel.org/pub/software/scm/git/git-2.30.0.tar.xz"; | |
|
15 | sha256 = "06ad6dylgla34k9am7d5z8y3rryc8ln3ibq5z0d74rcm20hm0wsm"; | |
|
9 | 16 | }; |
|
10 | 17 | |
|
11 | 18 | # patches come from: https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/version-management/git-and-tools/git |
@@ -17,6 +24,11 b' self: super: {' | |||
|
17 | 24 | ./patches/git/installCheck-path.patch |
|
18 | 25 | ]; |
|
19 | 26 | |
|
27 | #preInstallCheck = oldAttrs.preInstallCheck + '' | |
|
28 | # disable_test t4129-apply-samemode | |
|
29 | # disable_test t5324-split-commit-graph | |
|
30 | #''; | |
|
31 | ||
|
20 | 32 | }); |
|
21 | 33 | |
|
22 | 34 | libgit2rc = super.lib.overrideDerivation super.libgit2 (oldAttrs: { |
General Comments 0
You need to be logged in to leave comments.
Login now