2017-05-26 15:43:50 +02:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
2017-09-16 21:53:16 +02:00
|
|
|
, python, git, gnupg, less, cacert
|
|
|
|
}:
|
2013-12-26 00:44:16 +01:00
|
|
|
|
2017-05-26 15:43:50 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "git-repo-${version}";
|
2018-12-20 22:10:07 +01:00
|
|
|
version = "1.13.2";
|
2017-05-26 15:43:50 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "android";
|
|
|
|
repo = "tools_repo";
|
|
|
|
rev = "v${version}";
|
2018-12-20 22:10:07 +01:00
|
|
|
sha256 = "0ll1yzwgpayps7c05j8kf1m4zvww7crmlyy7xa0w5g2krbjvjzvi";
|
2013-12-26 00:44:16 +01:00
|
|
|
};
|
|
|
|
|
2017-05-26 15:43:50 +02:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2017-09-16 21:53:16 +02:00
|
|
|
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
|
|
|
|
'';
|
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.
|
|
|
|
'';
|
2017-08-01 22:03:30 +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
|
|
|
}
|