mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
c01f509e44
if theres a source $stdenv then this is needed for structuredAttrs
22 lines
665 B
Bash
22 lines
665 B
Bash
# 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
|
|
#
|
|
if [ -e .attrs.sh ]; then source .attrs.sh; fi
|
|
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"} \
|
|
${nonConeMode:+--non-cone-mode} \
|
|
${branchName:+--branch-name "$branchName"}
|
|
|
|
runHook postFetch
|
|
stopNest
|