nixpkgs/pkgs/build-support/fetchgit/builder.sh
2009-06-26 00:56:54 +00:00

14 lines
206 B
Bash

source $stdenv/setup
header "exporting $url (rev $rev) into $out"
git clone --depth 1 "$url" $out
if test -n "$rev"; then
cd $out
git checkout $rev
fi
find $out -name .git\* | xargs rm -rf
stopNest