2019-12-18 01:11:51 +00:00
|
|
|
{ fetchurl }:
|
|
|
|
|
|
|
|
rec {
|
2023-03-14 17:33:50 +00:00
|
|
|
fetchSrc = {name, hash}: fetchurl {
|
2019-12-18 01:11:51 +00:00
|
|
|
url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${name}-${version}.tar.xz";
|
2023-03-14 17:33:50 +00:00
|
|
|
sha256 = hash;
|
2019-12-18 01:11:51 +00:00
|
|
|
};
|
|
|
|
|
2020-08-07 08:53:59 +00:00
|
|
|
major = "7";
|
2023-03-14 17:33:50 +00:00
|
|
|
minor = "5";
|
2023-05-29 11:27:03 +00:00
|
|
|
patch = "4";
|
|
|
|
tweak = "1";
|
2019-12-18 01:11:51 +00:00
|
|
|
|
|
|
|
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";
|
2023-05-29 11:27:03 +00:00
|
|
|
hash = "sha256-dWE7yXldkiEnsJOxfxyZ9p05eARqexgRRgNV158VVF4=";
|
2019-12-18 01:11:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# FIXME rename
|
|
|
|
translations = fetchSrc {
|
|
|
|
name = "translations";
|
2023-05-29 11:27:03 +00:00
|
|
|
hash = "sha256-dv3L8DtdxZcwmeXnqtTtwIpOvwZg3aH3VvJBiiZzbh0=";
|
2019-12-18 01:11:51 +00:00
|
|
|
};
|
|
|
|
|
2020-02-17 13:50:38 +00:00
|
|
|
# the "dictionaries" archive is not used for LO build because we already build hunspellDicts packages from
|
|
|
|
# it and LibreOffice can use these by pointing DICPATH environment variable at the hunspell directory
|
2019-12-18 01:11:51 +00:00
|
|
|
|
|
|
|
help = fetchSrc {
|
|
|
|
name = "help";
|
2023-05-29 11:27:03 +00:00
|
|
|
hash = "sha256-2CrGEyK5AQEAo1Qz1ACmvMH7BaOubW5BNLWv3fDEdOY=";
|
2019-12-18 01:11:51 +00:00
|
|
|
};
|
|
|
|
}
|