about summary refs log tree commit diff
path: root/pkgs/applications/office/openoffice/generate-libreoffice-srcs.sh
blob: 97bf2b32c9ce66ec5636ebf51fa3d859fe29e2c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

VERSIONBASE=3.4.5

VERSION=3.4.5.2

if [ $# -gt 2 ]; then
  VERSIONBASE=$1
  VERSION=$2
fi

echo '{fetchurl} : ['

for a in artwork base bootstrap calc components extensions extras filters \
  help impress libs-core libs-extern libs-extern-sys libs-gui postprocess \
  translations ure writer sdk testing; do

  URL=http://download.documentfoundation.org/libreoffice/src/$VERSIONBASE/libreoffice-$a-$VERSION.tar.bz2

  echo '(fetchurl {'
  echo "  url = \"$URL\";"
  echo "  sha256 = \"`nix-prefetch-url $URL`\";"
  echo '})'
done

echo ']'