summary refs log tree commit diff
path: root/maintainers/scripts/copy-tarball.sh
blob: 792071c129b931023d85af8ed9df7af83c87d61e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#! /bin/sh -e

distDir=${NIX_TARBALLS_CACHE:-/tarballs}

url="$1"
file="$2"
if [ -z "$url" ]; then echo "syntax: $0 URL"; exit 0; fi

base="$(basename "$url")"
if [ -z "$base" ]; then echo "bad URL"; exit 1; fi
dstPath="$distDir/$base"

if [ -e "$dstPath" ]; then if [ -n "$VERBOSE" ]; then echo "$dstPath already exists"; fi; exit 0; fi

if [ -z "$file" ]; then

    echo "downloading $url to $dstPath"

    if [ -n "$DRY_RUN" ]; then exit 0; fi

    declare -a res
    if ! res=($(PRINT_PATH=1 nix-prefetch-url "$url")); then
        exit
    fi

    storePath=${res[1]}

else
    storePath="$file"
fi

cp $storePath "$dstPath.tmp.$$"
mv -f "$dstPath.tmp.$$" "$dstPath"

echo "hashing $dstPath"

md5=$(nix-hash --flat --type md5 "$dstPath")
ln -sfn "../$base" $distDir/md5/$md5

sha1=$(nix-hash --flat --type sha1 "$dstPath")
ln -sfn "../$base" $distDir/sha1/$sha1

sha256=$(nix-hash --flat --type sha256 "$dstPath")
ln -sfn "../$base" $distDir/sha256/$sha256
ln -sfn "../$base" $distDir/sha256/$(nix-hash --type sha256 --to-base32 "$sha256")