nixpkgs/pkgs/applications/version-management/git-repo/default.nix

25 lines
752 B
Nix
Raw Normal View History

2013-12-25 23:44:16 +00:00
{ stdenv, fetchurl, python }:
stdenv.mkDerivation {
2016-11-28 19:46:47 +00:00
name = "git-repo-1.23";
2013-12-25 23:44:16 +00:00
src = fetchurl {
# I could not find a versioned url for the 1.21 version. In case
2013-12-26 00:01:01 +00:00
# the sha mismatches, check the homepage for new version and sha.
url = "http://commondatastorage.googleapis.com/git-repo-downloads/repo";
2016-11-28 19:46:47 +00:00
sha256 = "1i8xymxh630a7d5nkqi49nmlwk77dqn36vsygpyhri464qwz0iz1";
2013-12-25 23:44:16 +00:00
};
unpackPhase = "true";
installPhase = ''
mkdir -p $out/bin
2013-12-26 00:01:01 +00:00
sed -e 's,!/usr/bin/env python,!${python}/bin/python,' < $src > $out/bin/repo
chmod +x $out/bin/repo
2013-12-25 23:44:16 +00:00
'';
meta = {
homepage = "http://source.android.com/source/downloading.html";
description = "Android's repo management tool";
platforms = stdenv.lib.platforms.unix;
2013-12-25 23:44:16 +00:00
};
2015-09-16 17:12:51 +00:00
}