nixpkgs/pkgs/development/libraries/kde-frameworks-5.9/manifest.sh

16 lines
365 B
Bash
Raw Normal View History

2015-03-13 14:27:49 -07: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-04-11 16:31:00 -07:00
http://download.kde.org/stable/frameworks/5.9/ \
2015-03-13 14:27:49 -07:00
-A '*.tar.xz'
else
$(nix-build ../../../.. -A autonix.manifest) -A '*.tar.xz' "$@"
fi