summary refs log blame commit diff
path: root/pkgs/build-support/fetchgit/builder.sh
blob: c7c7d21709a14d69c9f4a70c11243e4fc556d086 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                             
                                              



                                            
                                                                  
                                  
                            
                             
                                          
                                                          
                                            
 
                 
        
# tested so far with:
# - no revision specified and remote has a HEAD which is used
# - revision specified and remote has a HEAD
# - revision specified and remote without HEAD
source $stdenv/setup

header "exporting $url (rev $rev) into $out"

$SHELL $fetcher --builder --url "$url" --out "$out" --rev "$rev" \
  ${leaveDotGit:+--leave-dotGit} \
  ${fetchLFS:+--fetch-lfs} \
  ${deepClone:+--deepClone} \
  ${fetchSubmodules:+--fetch-submodules} \
  ${sparseCheckout:+--sparse-checkout "$sparseCheckout"} \
  ${branchName:+--branch-name "$branchName"}

runHook postFetch
stopNest