summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/version-management/git-repo
diff options
context:
space:
mode:
authorFlorian Friesdorf <flo@chaoflow.net>2013-12-26 00:44:16 +0100
committerFlorian Friesdorf <flo@chaoflow.net>2013-12-26 00:45:21 +0100
commit46f627e8f7697a51f7c6fa16c259662b6508e804 (patch)
tree61c7994672337f362095535959e4cf1c69bf5953 /pkgs/applications/version-management/git-repo
parent01c39bdefc8ad6c9eb4177a977004ee7960454f7 (diff)
git-repo-1.19
Diffstat (limited to 'pkgs/applications/version-management/git-repo')
-rw-r--r--pkgs/applications/version-management/git-repo/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/applications/version-management/git-repo/default.nix b/pkgs/applications/version-management/git-repo/default.nix
new file mode 100644
index 000000000000..8b6e31039fb7
--- /dev/null
+++ b/pkgs/applications/version-management/git-repo/default.nix
@@ -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";
+ };
+} \ No newline at end of file