##// END OF EJS Templates
py3: import/code fixes
py3: import/code fixes

File last commit:

r987:1d5adfe8 python3
r987:1d5adfe8 python3
Show More
overlays.nix
96 lines | 2.7 KiB | text/x-nix | NixLexer
nix: updated to 18.03 packages....
r472 self: super: {
requirements: added pygit2 into project
r723
git: bumped version to git-2.26.1
r969 # change GIT version
# latest supported are in: https://github.com/NixOS/nixpkgs/tree/master/pkgs/applications/version-management/git-and-tools/git
nix: updated to 18.03 packages....
r472 git = super.lib.overrideDerivation super.git (oldAttrs: {
git: bumped version to git-2.26.1
r969 name = "git-2.25.3";
nix: updated to 18.03 packages....
r472 src = self.fetchurl {
git: bumped version to git-2.26.1
r969 url = "https://www.kernel.org/pub/software/scm/git/git-2.25.3.tar.xz";
sha256 = "0yvr97cl0dvj3fwblq1mb0cp97v8hrn9l98p8b1jx8815mbsnz9h";
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: {
py3: packaging, further fixes for newer code....
r986 name = "libgit2-1.0.1";
version = "1.0.1";
requirements: added pygit2 into project
r723
src = self.fetchFromGitHub {
owner = "libgit2";
repo = "libgit2";
py3: packaging, further fixes for newer code....
r986 rev = "v1.0.1";
py3: import/code fixes
r987 sha256 = "0xqdnvrq1bnf8hxh9xjw25y2cg91agvd9jr5qwd30z2a0dzll22v";
requirements: added pygit2 into project
r723 };
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
py3: import/code fixes
r987 # - activate special python bindings
py3: packaging, further fixes for newer code....
r986 subversionrc =
let
py3c = self.python37Packages.buildPythonPackage rec {
pname = "py3c";
version = "1.0";
src = self.fetchurl {
url = "https://files.pythonhosted.org/packages/6a/aa/9f1a69a8c71e72553b281603633e42501de932aa4d9912bccbf9a2884093/py3c-1.0.tar.gz";
sha256 = "1h80jqi6r64kppxb4kshsiadrgc5hwk5arp3zcki01jf4ahknjz9";
};
format = "setuptools";
doCheck = false;
buildInputs = [];
checkInputs = [];
nativeBuildInputs = [];
propagatedBuildInputs = [];
meta = {
license = [ ];
};
};
in
let
pythonWithEnv = self.python37Packages.python.buildEnv.override {
extraLibs = [ py3c ];
};
in
nix: updated to 18.03 packages....
r472 let
subversionWithPython = super.subversion.override {
py3: packaging, further fixes for newer code....
r986 httpSupport = true; # client must support http
nix: updated to 18.03 packages....
r472 pythonBindings = true;
py3: packaging, further fixes for newer code....
r986 python = pythonWithEnv;
nix: updated to 18.03 packages....
r472 };
py3: packaging, further fixes for newer code....
r986
nix: updated to 18.03 packages....
r472 in
super.lib.overrideDerivation subversionWithPython (oldAttrs: {
py3: packaging, further fixes for newer code....
r986 name = "subversion-1.14.0";
nix: updated to 18.03 packages....
r472 src = self.fetchurl {
py3: packaging, further fixes for newer code....
r986 url = "https://archive.apache.org/dist/subversion/subversion-1.14.0.tar.gz";
sha256 = "1l1px5kva5a13pi2rkxfgxfvypvl6bmbkdag6168fhayad3i2ggg";
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 });
py3: packaging, further fixes for newer code....
r986
nix: updated to 18.03 packages....
r472 }