##// END OF EJS Templates
hooks: handle errors before trying to fetch the output.
hooks: handle errors before trying to fetch the output.

File last commit:

r495:75897929 default
r529:548d9d51 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.1 release
r494 name = "git-2.17.1";
nix: updated to 18.03 packages....
r472 src = self.fetchurl {
dependencies: bumped GIT to 2.17.1 release
r494 url = "https://www.kernel.org/pub/software/scm/git/git-2.17.1.tar.xz";
sha256 = "0pm6bdnrrm165k3krnazxcxadifk2gqi30awlbcf9fism1x6w4vr";
nix: updated to 18.03 packages....
r472 };
patches = [
./git_patches/docbook2texi.patch
./git_patches/symlinks-in-bin.patch
./git_patches/git-sh-i18n.patch
./git_patches/ssh-path.patch
];
});
# 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 });
}