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

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

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

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

  src = fetchurl {
    url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz";
    sha256 = "228166908a3404cbb8e6e662f44b1af8644c0589b2309fadce89dcef112fd09d";
  };
}