2019-12-18 01:11:51 +00:00
|
|
|
{ fetchurl }:
|
|
|
|
|
|
|
|
rec {
|
|
|
|
fetchSrc = {name, sha256}: fetchurl {
|
|
|
|
url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${name}-${version}.tar.xz";
|
|
|
|
inherit sha256;
|
|
|
|
};
|
|
|
|
|
2020-08-07 08:53:59 +00:00
|
|
|
major = "7";
|
2021-02-04 11:40:30 +00:00
|
|
|
minor = "1";
|
2021-05-06 12:38:56 +00:00
|
|
|
patch = "3";
|
2021-03-04 19:23:50 +00:00
|
|
|
tweak = "2";
|
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";
|
2021-05-06 12:38:56 +00:00
|
|
|
sha256 = "1gr9c8kv7nc9kaag1sw9r36843pfba1my80afx7p0lxj0k8pzbrm";
|
2019-12-18 01:11:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# FIXME rename
|
|
|
|
translations = fetchSrc {
|
|
|
|
name = "translations";
|
2021-05-06 12:38:56 +00:00
|
|
|
sha256 = "09xkr6jmnwq55savw9xjsy8l8zcyflnsg4nfwhknvm3ls8sqj4w6";
|
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";
|
2021-05-06 12:38:56 +00:00
|
|
|
sha256 = "0dc981vmxfdwlyfgq84axkr99d8chm1ypknj39v0cmaqn56lpwg0";
|
2019-12-18 01:11:51 +00:00
|
|
|
};
|
|
|
|
}
|