nixpkgs/pkgs/applications/office/libreoffice/still-primary-src.nix

18 lines
396 B
Nix
Raw Normal View History

{ fetchurl }:
rec {
major = "5";
2018-02-27 07:42:29 +01:00
minor = "4";
patch = "5";
2017-09-17 16:27:28 +02:00
tweak = "1";
subdir = "${major}.${minor}.${patch}";
version = "${subdir}${if tweak == "" then "" else "."}${tweak}";
src = fetchurl {
2018-02-27 07:42:29 +01:00
url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${version}.tar.xz";
sha256 = "167bh6jgyhfcvn3g7xghkg4nb99h91diypdlry5df21xs8bis5gb";
};
}