mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
3a205134fb
fix a incorrect name of environment variable
12 lines
222 B
Bash
12 lines
222 B
Bash
source $stdenv/setup
|
|
|
|
echo "copying $pathname 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
|