##// END OF EJS Templates
release: Merge default into stable for release preparation
release: Merge default into stable for release preparation

File last commit:

r560:18084915 default
r572:fd48aa4e merge stable
Show More
overlays.nix
45 lines | 1.2 KiB | text/x-nix | NixLexer
nix: updated to 18.03 packages....
r472 self: super: {
# bump GIT version
git = super.lib.overrideDerivation super.git (oldAttrs: {
dependencies: bumped GIT to 2.17.2 to address the security issues found in GIT
r559 name = "git-2.17.2";
nix: updated to 18.03 packages....
r472 src = self.fetchurl {
dependencies: bumped GIT to 2.17.2 to address the security issues found in GIT
r559 url = "https://www.kernel.org/pub/software/scm/git/git-2.17.2.tar.xz";
sha256 = "1ghljlxmyqphx13qspy382cpl2pbkbwbhqm7w7z57r9mkhswx668";
nix: updated to 18.03 packages....
r472 };
patches = [
patches: organize into a single directory.
r560 ./patches/git/docbook2texi.patch
./patches/git/symlinks-in-bin.patch
./patches/git/git-sh-i18n.patch
./patches/git/ssh-path.patch
nix: updated to 18.03 packages....
r472 ];
});
# Override subversion derivation to
# - activate python bindings
subversion =
let
subversionWithPython = super.subversion.override {
httpSupport = true;
pythonBindings = true;
python = self.python27Packages.python;
};
in
super.lib.overrideDerivation subversionWithPython (oldAttrs: {
dependencies: bumped SVN to 1.10.2 release
r495 name = "subversion-1.10.2";
nix: updated to 18.03 packages....
r472 src = self.fetchurl {
dependencies: bumped SVN to 1.10.2 release
r495 url = "https://archive.apache.org/dist/subversion/subversion-1.10.2.tar.gz";
sha256 = "0xv5z2bg0lw7057g913yc13f60nfj257wvmsq22pr33m4syf26sg";
nix: updated to 18.03 packages....
r472 };
dependencies: bumped SVN to 1.10.2 release
r495
## use internal lz4/utf8proc because it is stable and shipped with SVN
configureFlags = oldAttrs.configureFlags ++ [
" --with-lz4=internal"
" --with-utf8proc=internal"
];
nix: updated to 18.03 packages....
r472 });
}