summary refs log tree commit diff
path: root/pkgs/build-support/fetchbzr/builder.sh
blob: 17567fdadd23927ef9645ddec2c52b2faf5082db (plain) (blame)
1
2
3
4
5
6
7
8
9
source "$stdenv/setup"

header "exporting \`$url' (revision $revision) into \`$out'"

# Perform a lightweight checkout so that we don't end up importing
# all the repository's history.
bzr -Ossl.cert_reqs=none export -r "$revision" --format=dir "$out" "$url"

stopNest