···11+#!/bin/sh
22+33+# if setting KDE_MIRROR, be sure to set --cut-dirs=N in MANIFEST_EXTRA_ARGS
44+KDE_MIRROR="${KDE_MIRROR:-http://download.kde.org}"
55+66+if [ $# -eq 0 ]; then
77+88+ # The extra slash at the end of the URL is necessary to stop wget
99+ # from recursing over the whole server! (No, it's not a bug.)
1010+ $(nix-build ../../../.. -A autonix.manifest) \
1111+ "${KDE_MIRROR}/stable/frameworks/5.10/" \
1212+ $MANIFEST_EXTRA_ARGS -A '*.tar.xz'
1313+1414+else
1515+1616+ $(nix-build ../../../.. -A autonix.manifest) -A '*.tar.xz' "$@"
1717+1818+fi
···11-#!/bin/sh
22-33-if [ $# -eq 0 ]; then
44-55- # The extra slash at the end of the URL is necessary to stop wget
66- # from recursing over the whole server! (No, it's not a bug.)
77- $(nix-build ../../../.. -A autonix.manifest) \
88- http://download.kde.org/stable/frameworks/5.9/ \
99- -A '*.tar.xz'
1010-1111-else
1212-1313- $(nix-build ../../../.. -A autonix.manifest) -A '*.tar.xz' "$@"
1414-1515-fi