summary refs log tree commit diff
path: root/pkgs/applications/office/libreoffice/still-primary-src.nix
blob: 0fae854f42fa629169f9adc5500a8c357c5ae0e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ fetchurl }:

rec {
  major = "5";
  minor = "2";
  patch = "5";
  tweak = "1";

  subdir = "${major}.${minor}.${patch}";

  version = "${subdir}${if tweak == "" then "" else "."}${tweak}";

  src = fetchurl {
    url = "http://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz";
    sha256 = "006kn1m5d6c1skgc1scc0gssin922raca2psjv887alplhia6mlp";
  };
}