2017-05-26 14:43:50 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
|
|
|
, python, git, gnupg1compat, less }:
|
2013-12-25 23:44:16 +00:00
|
|
|
|
2017-05-26 14:43:50 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "git-repo-${version}";
|
|
|
|
version = "1.12.37";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "android";
|
|
|
|
repo = "tools_repo";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0qp7jqhblv7xblfgpcq4n18dyjdv8shz7r60c3vnjxx2fngkj2jd";
|
2013-12-25 23:44:16 +00:00
|
|
|
};
|
|
|
|
|
2017-05-26 14:43:50 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ python git gnupg1compat less ];
|
|
|
|
|
2013-12-25 23:44:16 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
2017-05-26 14:43:50 +01:00
|
|
|
cp $src/repo $out/bin/repo
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/repo --prefix PATH ":" \
|
|
|
|
"${stdenv.lib.makeBinPath [ git gnupg1compat 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
|
|
|
}
|