53577663f5
svn path=/nixpkgs/branches/nixos-pkgs/; revision=1679
14 lines
162 B
Plaintext
14 lines
162 B
Plaintext
set -x
|
|
set -e
|
|
|
|
echo $curl
|
|
|
|
$curl/bin/curl "$url" > .tmp
|
|
|
|
$gunzip -d < .tmp | $tar xvf -
|
|
|
|
$cp -prvd * $out
|
|
|
|
if test -n "$postprocess"; then
|
|
source $postprocess
|
|
fi |