1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00
nixpkgs/pkgs/applications/office/softmaker/freeoffice.nix

16 lines
401 B
Nix
Raw Normal View History

2019-08-30 16:41:27 +01:00
{ callPackage, fetchurl, ... } @ args:
callPackage ./generic.nix (args // rec {
pname = "freeoffice";
version = "974";
2019-08-30 16:41:27 +01:00
edition = "2018";
suiteName = "FreeOffice";
src = fetchurl {
url = "https://www.softmaker.net/down/softmaker-freeoffice-${version}-amd64.tgz";
sha256 = "0z7131qmqyv1m9phm7wzvb5z7wkh27h59lsa3zc0zjkykikmjrp2";
2019-08-30 16:41:27 +01:00
};
archive = "freeoffice${edition}.tar.lzma";
})