3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/build-support/fetchhg/builder.sh
2014-05-29 09:06:13 +02:00

10 lines
199 B
Bash

source $stdenv/setup
header "getting $url${tag:+ ($tag)} into $out"
hg clone --insecure "$url" hg-clone
hg archive -q -y ${tag:+-r "$tag"} --cwd hg-clone $out
rm -f $out/.hg_archival.txt
stopNest