about summary refs log tree commit diff
path: root/pkgs/build-support/fetchfile/builder.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/build-support/fetchfile/builder.sh')
-rw-r--r--pkgs/build-support/fetchfile/builder.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/pkgs/build-support/fetchfile/builder.sh b/pkgs/build-support/fetchfile/builder.sh
deleted file mode 100644
index b849491fc5ab..000000000000
--- a/pkgs/build-support/fetchfile/builder.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-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