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

          
                                    
                                 
 
                                       


                                         
  
#! /bin/sh

echo "downloading $url into $out..."
@wget@ "$url" -O "$out" || exit 1

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