##// END OF EJS Templates
dependencies: bumped GIT to 2.17.2 to address the security issues found in GIT
marcink -
r530:73fe9e12 stable
parent child Browse files
Show More
@@ -1,45 +1,45 b''
1 1 self: super: {
2 2 # bump GIT version
3 3 git = super.lib.overrideDerivation super.git (oldAttrs: {
4 name = "git-2.17.1";
4 name = "git-2.17.2";
5 5 src = self.fetchurl {
6 url = "https://www.kernel.org/pub/software/scm/git/git-2.17.1.tar.xz";
7 sha256 = "0pm6bdnrrm165k3krnazxcxadifk2gqi30awlbcf9fism1x6w4vr";
6 url = "https://www.kernel.org/pub/software/scm/git/git-2.17.2.tar.xz";
7 sha256 = "1ghljlxmyqphx13qspy382cpl2pbkbwbhqm7w7z57r9mkhswx668";
8 8 };
9 9
10 10 patches = [
11 11 ./git_patches/docbook2texi.patch
12 12 ./git_patches/symlinks-in-bin.patch
13 13 ./git_patches/git-sh-i18n.patch
14 14 ./git_patches/ssh-path.patch
15 15 ];
16 16
17 17 });
18 18
19 19 # Override subversion derivation to
20 20 # - activate python bindings
21 21 subversion =
22 22 let
23 23 subversionWithPython = super.subversion.override {
24 24 httpSupport = true;
25 25 pythonBindings = true;
26 26 python = self.python27Packages.python;
27 27 };
28 28 in
29 29 super.lib.overrideDerivation subversionWithPython (oldAttrs: {
30 30 name = "subversion-1.10.2";
31 31 src = self.fetchurl {
32 32 url = "https://archive.apache.org/dist/subversion/subversion-1.10.2.tar.gz";
33 33 sha256 = "0xv5z2bg0lw7057g913yc13f60nfj257wvmsq22pr33m4syf26sg";
34 34 };
35 35
36 36 ## use internal lz4/utf8proc because it is stable and shipped with SVN
37 37 configureFlags = oldAttrs.configureFlags ++ [
38 38 " --with-lz4=internal"
39 39 " --with-utf8proc=internal"
40 40 ];
41 41
42 42
43 43 });
44 44
45 45 }
General Comments 0
You need to be logged in to leave comments. Login now