nixpkgs/pkgs/build-support/fetchhg/builder.sh

11 lines
218 B
Bash
Raw Normal View History

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