2021-05-30 04:16:10 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, makeWrapper, nix-update-script
|
2021-06-03 16:24:19 +02:00
|
|
|
, python3, git, gnupg, less, openssh
|
2017-09-16 21:53:16 +02:00
|
|
|
}:
|
2013-12-26 00:44:16 +01:00
|
|
|
|
2017-05-26 15:43:50 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-30 17:49:37 +02:00
|
|
|
pname = "git-repo";
|
2021-10-16 17:58:19 +02:00
|
|
|
version = "2.17.2";
|
2017-05-26 15:43:50 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "android";
|
|
|
|
repo = "tools_repo";
|
|
|
|
rev = "v${version}";
|
2021-10-16 17:58:19 +02:00
|
|
|
sha256 = "sha256-JfT0jW6aUZAYESQI0tFfnITFv20Jk7DWbvz8Ipt4t1Y=";
|
2013-12-26 00:44:16 +01:00
|
|
|
};
|
|
|
|
|
2021-06-03 16:24:19 +02:00
|
|
|
# Fix 'NameError: name 'ssl' is not defined'
|
|
|
|
patches = [ ./import-ssl-module.patch ];
|
|
|
|
|
2017-05-26 15:43:50 +02:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2020-02-04 14:29:29 +01:00
|
|
|
buildInputs = [ python3 ];
|
2017-09-16 21:53:16 +02:00
|
|
|
|
2020-02-05 21:25:08 +01:00
|
|
|
postPatch = ''
|
2019-01-19 12:23:08 +01:00
|
|
|
substituteInPlace repo --replace \
|
|
|
|
'urllib.request.urlopen(url)' \
|
2020-02-05 21:25:08 +01:00
|
|
|
'urllib.request.urlopen(url, context=ssl.create_default_context())'
|
2017-09-16 21:53:16 +02:00
|
|
|
'';
|
2017-05-26 15:43:50 +02:00
|
|
|
|
2013-12-26 00:44:16 +01:00
|
|
|
installPhase = ''
|
2021-05-30 04:16:10 +02:00
|
|
|
runHook preInstall
|
|
|
|
|
2013-12-26 00:44:16 +01:00
|
|
|
mkdir -p $out/bin
|
2017-09-16 21:53:16 +02:00
|
|
|
cp repo $out/bin/repo
|
2021-05-30 04:16:10 +02:00
|
|
|
|
|
|
|
runHook postInstall
|
2017-05-26 15:43:50 +02:00
|
|
|
'';
|
|
|
|
|
2017-09-16 21:53:16 +02:00
|
|
|
# Important runtime dependencies
|
2017-05-26 15:43:50 +02:00
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/repo --prefix PATH ":" \
|
2021-06-03 16:24:19 +02:00
|
|
|
"${lib.makeBinPath [ git gnupg less openssh ]}"
|
2013-12-26 00:44:16 +01:00
|
|
|
'';
|
|
|
|
|
2021-05-30 04:16:10 +02:00
|
|
|
passthru = {
|
|
|
|
updateScript = nix-update-script {
|
|
|
|
attrPath = "gitRepo";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2013-12-26 00:44:16 +01:00
|
|
|
description = "Android's repo management tool";
|
2017-05-26 15:43:50 +02:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://android.googlesource.com/tools/repo";
|
2017-05-26 15:43:50 +02:00
|
|
|
license = licenses.asl20;
|
2021-05-30 04:16:10 +02:00
|
|
|
maintainers = with maintainers; [ otavio ];
|
2017-05-26 15:43:50 +02:00
|
|
|
platforms = platforms.unix;
|
2013-12-26 00:44:16 +01:00
|
|
|
};
|
2015-09-16 19:12:51 +02:00
|
|
|
}
|