nixpkgs/pkgs/applications/kde-apps-15.04/manifest.sh

21 lines
615 B
Bash
Raw Normal View History

2015-04-08 16:41:05 +02:00
#!/bin/sh
2015-04-25 14:31:45 +02:00
# if setting KDE_MIRROR, be sure to set --cut-dirs=N in MANIFEST_EXTRA_ARGS
2015-04-17 02:41:30 +02:00
KDE_MIRROR="${KDE_MIRROR:-http://download.kde.org}"
2015-04-08 16:41:05 +02:00
if [ $# -eq 0 ]; then
# The extra slash at the end of the URL is necessary to stop wget
# from recursing over the whole server! (No, it's not a bug.)
$(nix-build ../../.. -A autonix.manifest) \
2015-04-17 02:41:30 +02:00
"${KDE_MIRROR}/stable/applications/15.04.0/" \
2015-05-14 15:24:28 +02:00
"${KDE_MIRROR}/stable/applications/15.04.1/" \
"${KDE_MIRROR}/stable/applications/15.04.2/" \
2015-04-25 14:31:45 +02:00
$MANIFEST_EXTRA_ARGS -A '*.tar.xz'
2015-04-08 16:41:05 +02:00
else
$(nix-build ../../.. -A autonix.manifest) -A '*.tar.xz' "$@"
fi