git-repo-1.19

This commit is contained in:
Florian Friesdorf 2013-12-26 00:44:16 +01:00
parent 01c39bdefc
commit 46f627e8f7
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ stdenv, fetchurl, python }:
stdenv.mkDerivation {
name = "git-repo-1.19";
src = fetchurl {
url = "https://git-repo.googlecode.com/files/repo-1.19";
sha1 = "e48d46e36194859fe8565e8cbdf4c5d1d8768ef3";
};
unpackPhase = "true";
installPhase = ''
mkdir -p $out/bin
install $src $out/bin/repo
'';
meta = {
homepage = "http://source.android.com/source/downloading.html";
description = "Android's repo management tool";
};
}

View File

@ -8075,6 +8075,10 @@ let
gitFull = gitAndTools.gitFull;
gitSVN = gitAndTools.gitSVN;
gitRepo = callPackage ../applications/version-management/git-repo {
python = python27;
};
giv = callPackage ../applications/graphics/giv {
pcre = pcre.override { unicodeSupport = true; };
};