mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
00932b9d08
Some of the downloads produce empty files, those hashes were not updated.
12 lines
362 B
Bash
Executable file
12 lines
362 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
BASE_URL="https://lhapdf.hepforge.org/downloads?f=pdfsets/6.2/"
|
|
|
|
for pdf_set in `curl $BASE_URL 2>/dev/null | gsed -e "s/.*<a href=\"[^\"]*\/\([^\"/]*.tar.gz\)\".*/\1/;tx;d;:x" | gsed -e "s/%2B/+/g" | sort -u`; do
|
|
echo -n " \"${pdf_set%.tar.gz}\" = \""
|
|
nix-prefetch-url "${BASE_URL}${pdf_set}" 2>/dev/null | tr -d '\n'
|
|
echo "\";"
|
|
done
|