2015-04-20 03:50:03 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2015-04-26 00:22:00 +02:00
|
|
|
# if setting KDE_MIRROR, be sure to set --cut-dirs=N in MANIFEST_EXTRA_ARGS
|
2015-04-20 03:50:03 +02:00
|
|
|
KDE_MIRROR="${KDE_MIRROR:-http://download.kde.org}"
|
|
|
|
|
|
|
|
# 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-06-02 16:08:32 +02:00
|
|
|
"${KDE_MIRROR}/stable/plasma/5.3.1/" \
|
2015-04-26 00:22:00 +02:00
|
|
|
$MANIFEST_EXTRA_ARGS -A '*.tar.xz'
|