mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
4df6ec860c
svn path=/nixpkgs/trunk/; revision=850
16 lines
231 B
Bash
Executable file
16 lines
231 B
Bash
Executable file
#! /bin/sh -e
|
|
|
|
. $stdenv/setup
|
|
|
|
header "downloading $out from $url"
|
|
|
|
curl "$url" > "$out"
|
|
|
|
actual=$(md5sum -b "$out" | cut -c1-32)
|
|
if test "$actual" != "$md5"; then
|
|
echo "hash is $actual, expected $md5"
|
|
exit 1
|
|
fi
|
|
|
|
stopNest
|