##// END OF EJS Templates
dependencies: bumped SVN to 1.10.2 release
marcink -
r495:75897929 default
parent child Browse files
Show More
@@ -1,37 +1,45 b''
1 1 self: super: {
2 2 # bump GIT version
3 3 git = super.lib.overrideDerivation super.git (oldAttrs: {
4 4 name = "git-2.17.1";
5 5 src = self.fetchurl {
6 6 url = "https://www.kernel.org/pub/software/scm/git/git-2.17.1.tar.xz";
7 7 sha256 = "0pm6bdnrrm165k3krnazxcxadifk2gqi30awlbcf9fism1x6w4vr";
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 name = "subversion-1.9.9";
30 name = "subversion-1.10.2";
31 31 src = self.fetchurl {
32 url = "https://archive.apache.org/dist/subversion/subversion-1.9.9.tar.gz";
33 sha256 = "0f0ivhv6mjrpmlxa6a81zsjqdpw6y06ivszky7x5fz5h34c05lr8";
32 url = "https://archive.apache.org/dist/subversion/subversion-1.10.2.tar.gz";
33 sha256 = "0xv5z2bg0lw7057g913yc13f60nfj257wvmsq22pr33m4syf26sg";
34 34 };
35
36 ## use internal lz4/utf8proc because it is stable and shipped with SVN
37 configureFlags = oldAttrs.configureFlags ++ [
38 " --with-lz4=internal"
39 " --with-utf8proc=internal"
40 ];
41
42
35 43 });
36 44
37 45 }
General Comments 0
You need to be logged in to leave comments. Login now