mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-17 07:37:18 +02:00
10 lines
216 B
Bash
10 lines
216 B
Bash
#! /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
|