about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.10/manifest.sh
blob: 28870e48964dad187ceb2534a337cf8fe2167b4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# if setting KDE_MIRROR, be sure to set --cut-dirs=N in MANIFEST_EXTRA_ARGS
KDE_MIRROR="${KDE_MIRROR:-http://download.kde.org}"

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) \
      "${KDE_MIRROR}/stable/frameworks/5.10/" \
      $MANIFEST_EXTRA_ARGS -A '*.tar.xz'

else

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

fi