nixpkgs/pkgs/desktops/plasma-5.2/manifest.sh

17 lines
412 B
Bash
Raw Normal View History

2015-01-28 04:16:31 +00: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) \
http://download.kde.org/stable/plasma/5.2.0/ \
2015-02-25 02:22:45 +00:00
http://download.kde.org/stable/plasma/5.2.1/ \
2015-01-28 04:16:31 +00:00
-A '*.tar.xz'
else
$(nix-build ../../.. -A autonix.manifest) -A '*.tar.xz' "$@"
fi