summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/office
AgeCommit message (Collapse)Author
2024-08-11Merge pull request #333754 from Xaver106/bump-ticktickPol Dellaiera
ticktick: 2.0.30 -> 6.0.0
2024-08-10ticktick: 2.0.30 -> 6.0.0Xaver106
2024-08-10homebank: 5.8.1 -> 5.8.2Frank Lanitz
2024-08-07Merge pull request #329672 from DarkOnion0/appflowytomberek
appflowy: 0.6.4 -> 0.6.6
2024-08-05Merge pull request #328891 from r-ryantm/auto-update/mendeleyNick Cao
mendeley: 2.118.0 -> 2.120.0
2024-08-05qownnotes: 24.8.2 -> 24.8.3Patrizio Bekerle
Signed-off-by: Patrizio Bekerle <patrizio@bekerle.com>
2024-08-04planify: 4.9.0 -> 4.10.5R. Ryantm
2024-08-04mendeley: 2.118.0 -> 2.120.0R. Ryantm
2024-08-03appflowy: 0.6.5 -> 0.6.6DarkOnion0
https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.6.6
2024-08-03qownnotes: 24.7.2 -> 24.8.2R. Ryantm
2024-08-03treewide: Pass self when overriding Pythonadisbladis
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by: ``` nix with import <nixpkgs> { }; let python' = python3.override { packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337"; }); }; }; in python'.pkgs.python.pkgs.requests ``` which returns the _non_ overriden requests. And the same with `self`: ``` with import <nixpkgs> { }; let python' = python3.override { self = python'; packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337"; }); }; }; in python'.pkgs.python.pkgs.requests ``` which returns the overriden requests. This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-01Merge pull request #331389 from SuperSandro2000/paperless-ngxLeona Maroni
paperless-ngx: 2.11.0 -> 2.11.2
2024-08-01paperless-ngx: 2.11.0 -> 2.11.2Sandro Jäckel
2024-07-30Merge pull request #331079 from wineee/wpsofficeNick Cao
wpsoffice{-cn}: 11.1.0.11720 -> 11.1.0.11723
2024-07-30Merge pull request #328550 from pbsds/init-pytest-coverage-shim-1721428630Peder Bergebakken Sundt
python3Packages.pytest-cov-stub: init at 1.0.0
2024-07-30wpsoffice{-cn}: 11.1.0.11720 -> 11.1.0.11723rewine
2024-07-29Merge pull request #330664 from Mic92/empty-withAleksana
treewide: remove unused `with` statements from maintainer lists
2024-07-29Merge pull request #330043 from Sigmanificient/favaMatthias Beyer
fava: 1.27.3 -> 1.28
2024-07-29treewide: remove unused with statements from maintainer listsJörg Thalheim
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
2024-07-28treewide: remove viric from meta.maintainers [orphans]Anderson Torres
Since theey is not active from at least six years. All the packages on this commit became orphans. --------------------------------------------------------------------------- There are files not covered by this commit, because they will be adopted soon. Namely: - pkgs/by-name/zs/zsync/package.nix - pkgs/games/bsdgames/default.nix - pkgs/misc/ghostscript/default.nix - pkgs/os-specific/linux/kernel/perf/default.nix - pkgs/tools/system/logrotate/default.nix
2024-07-27libreoffice-collabora: fix Hydra failure by splitting src derivationAlbert Safin
The Hydra build of the libreoffice-collabora derivation introduced in ab5bdfd3c67f ("libreoffice-collabora: init at 24.04.5-4") fails with the status "Output limit exceeded" [1], particularly at fetchgit of its sources. Indeed, the full checkout of the git repo along with its submodules takes 4.2 GB which is past the 3.4 GB Hydra's max_output_size [2]. Unfortunately, the Collabora branch lacks the tarball releases like the upstream fresh/still variants, so we still have to fetch these submodules. This commit gives up on the usage of fetchSubmodules and instead fetches the submodules using separate fetchgit calls. This makes the structure of the nix expression for the collabora variant closer to the fresh/still variants than the initial version of the collabora variant. [1]: https://hydra.nixos.org/build/267358376 [2]: https://github.com/NixOS/infra/blob/4b5dd4f974d3f707b64ad60793b8182e645631ed/build/hydra.nix#L51
2024-07-26libreoffice: Add meta.mainProgramMynacol
So users can leverage `lib.getExe`. The expectation for the main program is the general libreoffice program, not specific binaries for e.g. Writer or Impress.
2024-07-26Merge pull request #328741 from Sigmanificient/remove-unused-arguments-pkgs-appAleksana
pkgs/applications: remove unused arguments
2024-07-26pkgs/applications: remove unused argumentsSigmanificient
2024-07-26fava: migrate to pkgs/by-nameSigmanificient
2024-07-26fava: modernizeSigmanificient
2024-07-26fava: fix disabled cli testSigmanificient
2024-07-26fava: replace python.pkgs to python3Packages due to splicingSigmanificient
2024-07-26fava: 1.27.3 -> 1.28Sigmanificient
2024-07-25libreoffice-collabora: remove passthru.srcs.{translations,help}Albert Safin
This fixes the evaluation error of libreoffice-collabora.passthru.srcs, introduced in ab5bdfd3c67f ("libreoffice-collabora: init at 24.04.5-4"). It was an overlook to keep these attributes. Unlike the still/fresh variants, the collabora variant fetches translations and help files from git submodules of the main repository rather than from these tarballs.
2024-07-25appflowy: 0.6.4 -> 0.6.5DarkOnion0
https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.6.5
2024-07-24libreoffice-collabora: init at 24.04.5-4Albert Safin
2024-07-22planify: 4.8.4 -> 4.9.0R. Ryantm
2024-07-22Merge pull request #326352 from leona-ya/paperless-ngx-2.11.0Leona Maroni
paperless-ngx: 2.10.2 -> 2.11.0
2024-07-21qownnotes: 24.7.1 -> 24.7.2R. Ryantm
2024-07-21todoman: migrate to pytest-cov-stubPeder Bergebakken Sundt
2024-07-17treewide: remove dtzWill as maintainer [orphans]Anderson Torres
Since theey is not active in a long span of time. All the packages in this commit are now orphan.
2024-07-17treewide: remove dtzWill as maintainer [no orphans]Anderson Torres
Since theey is not active in a long span of time. None of the packages in this commit are orphan.
2024-07-17appflowy: format using nixfmtAlexis Hildebrandt
2024-07-17appflowy: modernizeAlexis Hildebrandt
2024-07-17appflowy: add darwin platformAlexis Hildebrandt
2024-07-17Merge pull request #327673 from K900/update-libreoffice7c6f434c
libreoffice-fresh: 24.2.3 -> 24.2.5
2024-07-16Merge pull request #326429 from r-ryantm/auto-update/wpsofficeWeijia Wang
wpsoffice: 11.1.0.11719 -> 11.1.0.11720
2024-07-16Merge pull request #327627 from SuperSandro2000/unoconvPol Dellaiera
unoconv: use python directly from libreoffice
2024-07-16libreoffice-fresh: 24.2.3 -> 24.2.5K900
2024-07-16appflowy: 0.6.3 -> 0.6.4DarkOnion0
https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.6.4
2024-07-16wpsoffice: 11.1.0.11719 -> 11.1.0.11720R. Ryantm
2024-07-16libreoffice: passthru python versionSandro Jäckel
2024-07-16Merge pull request #325588 from DarkOnion0/appflowySandro
2024-07-16Merge pull request #325183 from r-ryantm/auto-update/trytonWeijia Wang
tryton: 7.2.2 -> 7.2.3