about summary refs log blame commit diff
path: root/corepkgs/fetchurl/fetchurl.sh.in
blob: a6cc6993028a48e7862c45b07a723d2854d9f9af (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

          

                         
                                    





                                             
                                                   
  
 
                                       
                                 

                                         
  
#! /bin/sh

export PATH=/bin:/usr/bin

echo "downloading $url into $out..."

prefetch=@prefix@/store/nix-prefetch-url-$md5
if test -f "$prefetch"; then
    echo "using prefetched $prefetch";
    mv $prefetch $out || exit 1
else
    @wget@ --passive-ftp "$url" -O "$out" || exit 1
fi

actual=$(@bindir@/nix-hash --flat $out)
if test "$actual" != "$md5"; then
    echo "hash is $actual, expected $md5"
    exit 1
fi