nixpkgs/pkgs/applications/office/libreoffice/still-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 = "5";
minor = "4";
patch = "7";
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 = "0s9s4nhp2whwxis54jbxrf1dwpnpl95b9781d1pdj4xk5z9v90fv";
};
}