summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.3-submodules/manifest.sh
blob: 6f71351153124b8fdb5e733a9c3addbc7f02bda1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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.qt.io/official_releases/qt/5.3/5.3.2/submodules/ \
      -A '*.tar.xz'

else

  $(nix-build ../../../.. -A autonix.manifest) -A '*.tar.xz' "$@"

fi