mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
337380ea1d
This was a problem when run inside a sandbox, e.g. via "fetchRepoProject". The error message from repo seems unrelated: fatal: Cannot get https://gerrit.googlesource.com/git-repo/clone.bundle fatal: error no host given But the exception is actually thrown due to missing certificates (/etc/ssl/certs). It should be possible to provide another location via environment variables (e.g. SSL_CERT_FILE, REQUESTS_CA_BUNDLE or CURL_CA_BUNDLE) but apparently that doesn't actually work for some reason (would have to study our Python packaging). Now "fetchRepoProject" works without the "--no-clone-bundle" option.
50 lines
1.4 KiB
Nix
50 lines
1.4 KiB
Nix
{ stdenv, fetchFromGitHub, makeWrapper
|
|
, python, git, gnupg, less, cacert
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "git-repo-${version}";
|
|
version = "1.12.37";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "android";
|
|
repo = "tools_repo";
|
|
rev = "v${version}";
|
|
sha256 = "0qp7jqhblv7xblfgpcq4n18dyjdv8shz7r60c3vnjxx2fngkj2jd";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ python ];
|
|
|
|
# TODO: Cleanup
|
|
patchPhase = ''
|
|
CA_PATH="$(echo '${cacert}/etc/ssl/certs/ca-bundle.crt' | sed 's/\//\\\//g')" # / -> \/
|
|
sed -i -E 's/urlopen\(url\)/urlopen(url, cafile="'$CA_PATH'")/' repo
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp repo $out/bin/repo
|
|
'';
|
|
|
|
# Important runtime dependencies
|
|
postFixup = ''
|
|
wrapProgram $out/bin/repo --prefix PATH ":" \
|
|
"${stdenv.lib.makeBinPath [ git gnupg less ]}"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Android's repo management tool";
|
|
longDescription = ''
|
|
Repo is a Python script based on Git that helps manage many Git
|
|
repositories, does the uploads to revision control systems, and automates
|
|
parts of the development workflow. Repo is not meant to replace Git, only
|
|
to make it easier to work with Git.
|
|
'';
|
|
homepage = https://android.googlesource.com/tools/repo;
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.primeos ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|