summary refs log tree commit diff
path: root/pkgs/build-support/fetchgit/builder.sh
blob: 6ae46469738a8033a76d6db26515bb656553031f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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} \
  ${deepClone:+--deepClone} \
  ${fetchSubmodules:+--fetch-submodules} \
  ${branchName:+--branch-name "$branchName"}

runHook postFetch
stopNest