nixpkgs/pkgs/development/libraries/physics/lhapdf/maintainer.sh

14 lines
406 B
Bash
Raw Normal View History

2016-06-11 21:12:00 +00:00
#!/bin/bash
2021-03-15 14:47:23 +00:00
set -xe
2016-06-11 21:12:00 +00:00
2021-03-15 14:47:23 +00:00
: ${SED:="$(nix-build '<nixpkgs>' -A gnused --no-out-link)/bin/sed"}
2016-06-11 21:12:00 +00:00
2021-03-15 14:47:23 +00:00
BASE_URL="https://lhapdfsets.web.cern.ch/lhapdfsets/current/"
for pdf_set in `curl -L $BASE_URL 2>/dev/null | "$SED" -e "s/.*<a href=\"\([^\"/]*.tar.gz\)\".*/\1/;tx;d;:x" | sort -u`; do
2016-06-11 21:12:00 +00:00
echo -n " \"${pdf_set%.tar.gz}\" = \""
nix-prefetch-url "${BASE_URL}${pdf_set}" 2>/dev/null | tr -d '\n'
echo "\";"
done