nixpkgs-suyu/pkgs/development/libraries/kde-frameworks-5.8/manifest.sh
Thomas Tuegel 6632b151b8 add kf58
2015-03-24 17:15:51 -05:00

15 lines
365 B
Bash
Executable file

#!/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/frameworks/5.8/ \
-A '*.tar.xz'
else
$(nix-build ../../../.. -A autonix.manifest) -A '*.tar.xz' "$@"
fi