summary refs log blame commit diff
path: root/pkgs/applications/version-management/git-repo/default.nix
blob: ad3311d967ae08a75d7f0c725fa589b7b8bd28f4 (plain) (tree)
1
2
3
4
5
6
7
8
9


                             
                         
                  
                                                                    

                                                                            
                                                      




                       

                                                                                 




                                                                   
                                          
    
 
{ stdenv, fetchurl, python }:

stdenv.mkDerivation {
  name = "git-repo-1.22";
  src = fetchurl {
    # I could not find a versioned url for the 1.21 version. In case
    # the sha mismatches, check the homepage for new version and sha.
    url = "http://commondatastorage.googleapis.com/git-repo-downloads/repo";
    sha1 = "da0514e484f74648a890c0467d61ca415379f791";
  };

  unpackPhase = "true";
  installPhase = ''
    mkdir -p $out/bin
    sed -e 's,!/usr/bin/env python,!${python}/bin/python,' < $src > $out/bin/repo
    chmod +x $out/bin/repo
  '';

  meta = {
    homepage = "http://source.android.com/source/downloading.html";
    description = "Android's repo management tool";
    platforms = stdenv.lib.platforms.unix;
  };
}