##// END OF EJS Templates
security: bumped git to 2.24.1 that fixes several CVE...
security: bumped git to 2.24.1 that fixes several CVE - those are mostly client side, still import logic could be affected in very edge cases.

File last commit:

r803:9a71cd0b default
r803:9a71cd0b default
Show More
overlays.nix
71 lines | 1.9 KiB | text/x-nix | NixLexer
nix: updated to 18.03 packages....
r472 self: super: {
requirements: added pygit2 into project
r723
nix: updated to 18.03 packages....
r472 # bump GIT version
git = super.lib.overrideDerivation super.git (oldAttrs: {
security: bumped git to 2.24.1 that fixes several CVE...
r803 name = "git-2.24.1";
nix: updated to 18.03 packages....
r472 src = self.fetchurl {
security: bumped git to 2.24.1 that fixes several CVE...
r803 url = "https://www.kernel.org/pub/software/scm/git/git-2.24.1.tar.xz";
sha256 = "0ql5z31vgl7b785gwrf00m129mg7zi9pa65n12ij3mpxx3f28gvj";
nix: updated to 18.03 packages....
r472 };
dependencies: bumped GIT to 2.19.1 release
r584 # patches come from: https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/version-management/git-and-tools/git
nix: updated to 18.03 packages....
r472 patches = [
patches: organize into a single directory.
r560 ./patches/git/docbook2texi.patch
./patches/git/git-sh-i18n.patch
./patches/git/ssh-path.patch
dependencies: bumped GIT to 2.19.1 release
r584 ./patches/git/git-send-email-honor-PATH.patch
./patches/git/installCheck-path.patch
nix: updated to 18.03 packages....
r472 ];
});
requirements: added pygit2 into project
r723 libgit2rc = super.lib.overrideDerivation super.libgit2 (oldAttrs: {
name = "libgit2-0.28.2";
version = "0.28.2";
src = self.fetchFromGitHub {
owner = "libgit2";
repo = "libgit2";
rev = "v0.28.2";
sha256 = "0cm8fvs05rj0baigs2133q5a0sm3pa234y8h6hmwhl2bz9xq3k4b";
};
cmakeFlags = [ "-DTHREADSAFE=ON" "-DUSE_HTTPS=no"];
buildInputs = [
super.zlib
super.libssh2
super.openssl
super.curl
];
});
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: {
dan
svn: bumped svn version to 1.12.2
r783 name = "subversion-1.12.2";
nix: updated to 18.03 packages....
r472 src = self.fetchurl {
dan
svn: bumped svn version to 1.12.2
r783 url = "https://archive.apache.org/dist/subversion/subversion-1.12.2.tar.gz";
sha256 = "1wr1pklnq67xdzmf237zj6l1hg43yshfkbxvpvd5sv6r0dk7v4pl";
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 });
requirements: added pygit2 into project
r723
nix: updated to 18.03 packages....
r472 }