mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
82e678362f
svn path=/nixpkgs/trunk/; revision=4335
11 lines
217 B
Bash
11 lines
217 B
Bash
source $stdenv/setup
|
|
|
|
echo "copying $url into $out..."
|
|
|
|
cp "$pathname" "$out" || exit 1
|
|
|
|
actual=$(md5sum -b $out | cut -c1-32)
|
|
if test "$actual" != "$md5"; then
|
|
echo "hash is $actual, expected $md5"
|
|
exit 1
|
|
fi
|