Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
78 lines
1.7 KiB
Nix
78 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
nix-update-script,
|
|
python3,
|
|
git,
|
|
gnupg,
|
|
less,
|
|
openssh,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "git-repo";
|
|
version = "2.58";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "android";
|
|
repo = "tools_repo";
|
|
rev = "v${version}";
|
|
hash = "sha256-s82v5+m+wpLEWMQiqfLegleTEs/KDzaqHGM7hn+/7fk=";
|
|
};
|
|
|
|
# Fix 'NameError: name 'ssl' is not defined'
|
|
patches = [ ./import-ssl-module.patch ];
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
buildInputs = [ python3 ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace repo --replace \
|
|
'urllib.request.urlopen(url)' \
|
|
'urllib.request.urlopen(url, context=ssl.create_default_context())'
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin
|
|
cp repo $out/bin/repo
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
# Important runtime dependencies
|
|
postFixup = ''
|
|
wrapProgram $out/bin/repo --prefix PATH ":" \
|
|
"${
|
|
lib.makeBinPath [
|
|
git
|
|
gnupg
|
|
less
|
|
openssh
|
|
]
|
|
}"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with 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 = with maintainers; [ otavio ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "repo";
|
|
};
|
|
}
|