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

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

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

stopNest