2015-01-19 20:39:04 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
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-01-25 21:47:17 +03:00
|
|
|
http://download.kde.org/stable/applications/14.12.1/ \
|
2015-03-11 02:24:18 +03:00
|
|
|
http://download.kde.org/stable/applications/14.12.2/ \
|
|
|
|
http://download.kde.org/stable/applications/14.12.3/ \
|
2015-01-19 20:39:04 +03:00
|
|
|
-A '*.tar.xz'
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
$(nix-build ../../.. -A autonix.manifest) -A '*.tar.xz' "$@"
|
|
|
|
|
|
|
|
fi
|