2017-05-26 15:43:50 +02:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
2020-02-05 21:25:08 +01:00
|
|
|
, python3, git, gnupg, less
|
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";
|
2020-09-07 18:25:18 +02:00
|
|
|
version = "2.9";
|
2017-05-26 15:43:50 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "android";
|
|
|
|
repo = "tools_repo";
|
|
|
|
rev = "v${version}";
|
2020-09-07 18:25:18 +02:00
|
|
|
sha256 = "1ii6vjgs5nd2hhp475mqa48165garc7ac2w9fyspajaanc7zhnik";
|
2013-12-26 00:44:16 +01:00
|
|
|
};
|
|
|
|
|
2020-02-05 21:25:08 +01:00
|
|
|
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 = ''
|
|
|
|
mkdir -p $out/bin
|
2017-09-16 21:53:16 +02:00
|
|
|
cp repo $out/bin/repo
|
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 ":" \
|
2017-09-16 21:53:16 +02:00
|
|
|
"${stdenv.lib.makeBinPath [ git gnupg less ]}"
|
2013-12-26 00:44:16 +01:00
|
|
|
'';
|
|
|
|
|
2017-05-26 15:43:50 +02:00
|
|
|
meta = with stdenv.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;
|
|
|
|
maintainers = [ maintainers.primeos ];
|
|
|
|
platforms = platforms.unix;
|
2013-12-26 00:44:16 +01:00
|
|
|
};
|
2015-09-16 19:12:51 +02:00
|
|
|
}
|