forked from mirrors/nixpkgs
737ce5c848
Each "variant" of libreoffice gets its own subdirectory src-$variant where files w/ source references are stored. In the directory is also override.nix which allows you to override derivation attributes in addition to source files.
36 lines
864 B
Nix
36 lines
864 B
Nix
{ fetchurl }:
|
|
|
|
rec {
|
|
fetchSrc = {name, sha256}: fetchurl {
|
|
url = "https://download.documentfoundation.org/libreoffice/src/${subdir}/libreoffice-${name}-${version}.tar.xz";
|
|
inherit sha256;
|
|
};
|
|
|
|
major = "6";
|
|
minor = "3";
|
|
patch = "0";
|
|
tweak = "4";
|
|
|
|
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 = "1mxflzrcm04djkj8ifyy4rwgl8bxirrvzrn864w6rgvzn43h30w7";
|
|
};
|
|
|
|
# FIXME rename
|
|
translations = fetchSrc {
|
|
name = "translations";
|
|
sha256 = "0730fw2kr00b2d56jkdzjdz49c4k4mxiz879c7ikw59c5zvrh009";
|
|
};
|
|
|
|
# TODO: dictionaries
|
|
|
|
help = fetchSrc {
|
|
name = "help";
|
|
sha256 = "1w9bqwzz75vvxxy9dgln0v6p6isf8mkqnkg1nzlaykvdgsn5sp4z";
|
|
};
|
|
}
|