2017-05-26 14:43:50 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
2017-09-16 20:53:16 +01:00
|
|
|
, python, git, gnupg, less, cacert
|
|
|
|
}:
|
2013-12-25 23:44:16 +00:00
|
|
|
|
2017-05-26 14:43:50 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "git-repo-${version}";
|
2019-06-04 21:13:36 +01:00
|
|
|
version = "1.13.3";
|
2017-05-26 14:43:50 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "android";
|
|
|
|
repo = "tools_repo";
|
|
|
|
rev = "v${version}";
|
2019-06-04 21:13:36 +01:00
|
|
|
sha256 = "0wyr6fyc9kzzw6y2cxvri35ib1sh156n6lnv119j5r1rzvc2lg6r";
|
2013-12-25 23:44:16 +00:00
|
|
|
};
|
|
|
|
|
2017-05-26 14:43:50 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2017-09-16 20:53:16 +01:00
|
|
|
buildInputs = [ python ];
|
|
|
|
|
|
|
|
patchPhase = ''
|
2019-01-19 11:23:08 +00:00
|
|
|
substituteInPlace repo --replace \
|
|
|
|
'urllib.request.urlopen(url)' \
|
|
|
|
'urllib.request.urlopen(url, cafile="${cacert}/etc/ssl/certs/ca-bundle.crt")'
|
2017-09-16 20:53:16 +01:00
|
|
|
'';
|
2017-05-26 14:43:50 +01:00
|
|
|
|
2013-12-25 23:44:16 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2017-09-16 20:53:16 +01:00
|
|
|
cp repo $out/bin/repo
|
2017-05-26 14:43:50 +01:00
|
|
|
'';
|
|
|
|
|
2017-09-16 20:53:16 +01:00
|
|
|
# Important runtime dependencies
|
2017-05-26 14:43:50 +01:00
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/repo --prefix PATH ":" \
|
2017-09-16 20:53:16 +01:00
|
|
|
"${stdenv.lib.makeBinPath [ git gnupg less ]}"
|
2013-12-25 23:44:16 +00:00
|
|
|
'';
|
|
|
|
|
2017-05-26 14:43:50 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-12-25 23:44:16 +00:00
|
|
|
description = "Android's repo management tool";
|
2017-05-26 14:43:50 +01: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.
|
|
|
|
'';
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://android.googlesource.com/tools/repo;
|
2017-05-26 14:43:50 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.primeos ];
|
|
|
|
platforms = platforms.unix;
|
2013-12-25 23:44:16 +00:00
|
|
|
};
|
2015-09-16 18:12:51 +01:00
|
|
|
}
|