summary refs log tree commit diff
path: root/pkgs/applications/kde-apps-15.04/manifest.sh
blob: a8e3591c20237cc40284a7af23c38688d8ea93ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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) \
      # We need 14.12 for some packages in LTS that are not released in beta.
      # Remove 14.12 when 15.04 is out of beta.
      http://download.kde.org/stable/applications/14.12.1/ \
      http://download.kde.org/stable/applications/14.12.2/ \
      http://download.kde.org/stable/applications/14.12.3/ \
      http://download.kde.org/unstable/applications/15.03.97/ \
      -A '*.tar.xz'

else

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

fi