mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-16 07:48:58 +00:00
16 lines
235 B
Bash
16 lines
235 B
Bash
source $stdenv/setup
|
|
|
|
header "exporting $url (rev $rev) into $out"
|
|
|
|
git clone "$url" $out
|
|
if test -n "$rev"; then
|
|
cd $out
|
|
git checkout $rev
|
|
fi
|
|
|
|
if test -z "$leaveDotGit"; then
|
|
find $out -name .git\* | xargs rm -rf
|
|
fi
|
|
|
|
stopNest
|