nixpkgs/pkgs/applications/office/libreoffice/default-primary-src.nix
Michael Raskin 7e3db3490e libreoffice: cleanup and update
1. For some reason libreoffice-still was still referencing the Fresh
expression.

2. Moved gdb from buildInputs to nativeBuildInputs.

3. Minor update for both branches.
2018-06-24 16:10:17 +02:00

18 lines
396 B
Nix

{ fetchurl }:
rec {
major = "6";
minor = "0";
patch = "5";
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 = "16h60j7h9z48vfhhj22m64myksnrrgrnh0qc6i4bxgshmm8kkzdn";
};
}