mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
cd04c58fe2
svn path=/nixpkgs/trunk/; revision=17980
14 lines
213 B
Bash
14 lines
213 B
Bash
source $stdenv/setup
|
|
|
|
header "exporting $url (rev $rev) into $out"
|
|
|
|
git clone --depth "$depth" "$url" $out
|
|
if test -n "$rev"; then
|
|
cd $out
|
|
git checkout $rev
|
|
fi
|
|
find $out -name .git\* | xargs rm -rf
|
|
|
|
stopNest
|
|
|