K900
894462661c
Merge branch 'master' into staging-next
2024-10-19 09:09:13 +03:00
Peder Bergebakken Sundt
a0f619278c
appflowy: 0.6.8 -> 0.7.1 ( #347730 )
2024-10-19 04:51:19 +02:00
R. Ryantm
ea2fa9b6ad
mendeley: 2.120.0 -> 2.122.1
2024-10-18 08:37:14 +00:00
jopejoe1
b7bf99ac50
abiword: use a live src
2024-10-17 21:12:09 +02:00
R. Ryantm
846d0e9927
timeular: 6.8.1 -> 6.8.4
2024-10-15 07:27:12 +00:00
github-actions[bot]
55382a65b9
Merge staging-next into staging
2024-10-14 06:05:43 +00:00
Robert Schütz
1b445bb575
python312Packages.icalendar: 5.0.13 -> 6.0.0 ( #328227 )
2024-10-13 20:29:14 -07:00
github-actions[bot]
f201fe5883
Merge staging-next into staging
2024-10-12 12:05:39 +00:00
DarkOnion0
1feb53c231
appflowy: 0.6.8 -> 0.7.1
...
https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.7.1
2024-10-12 10:41:44 +02:00
Fabián Heredia Montiel
ccec93c1c7
treewide: replace webkitgtk to webkitgtk_4_0
...
sed -i 's/ webkitgtk\b/ webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/(webkitgtk\b/(webkitgtk_4_0/g' pkgs/**.nix
sed -i 's/\.webkitgtk\b/.webkitgtk_4_0/g' pkgs/**.nix
webkitgtk is currently pointing to that specific ABI version but the
alias is going to start warning
2024-10-11 17:23:43 -06:00
Randy Eckenrode
80fdf7d31f
espanso: fix build on Darwin
...
Use the 11.0 SDK with a 10.13 deployment target.
2024-10-10 01:07:14 -04:00
Pol Dellaiera
9e709603b4
p3x-onenote: 2023.4.117 -> 2024.10.110 ( #346490 )
2024-10-08 16:38:40 +02:00
Peder Bergebakken Sundt
5a74cea603
zotero: 7.0.3 -> 7.0.7 ( #343045 )
2024-10-06 15:50:16 +02:00
R. Ryantm
dbd1b87cb9
qownnotes: 24.9.7 -> 24.9.8
2024-10-05 09:06:18 +00:00
Austin Horstman
7be3d140aa
p3x-onenote: move to by-name
2024-10-04 13:31:27 -05:00
Austin Horstman
a19fb6e968
p3x-onenote: format
2024-10-03 10:48:42 -05:00
kilianar
f5b988adf2
zotero: 7.0.3 -> 7.0.7
...
https://github.com/zotero/zotero/releases/tag/7.0.7
2024-10-03 13:05:44 +02:00
Robert Schütz
0a3284c46c
todoman: modernize
2024-10-01 13:13:30 -07:00
Robert Schütz
504d32e699
todoman: depends on pytz
2024-10-01 13:11:17 -07:00
h7x4
22ae4b71b6
morgen: 3.5.6 -> 3.5.9 ( #345543 )
2024-10-01 19:39:52 +02:00
R. Ryantm
fd881ffde5
morgen: 3.5.6 -> 3.5.9
2024-09-30 16:29:24 +00:00
R. Ryantm
63952d1b43
gnote: 46.1 -> 47.0
2024-09-30 10:07:51 +00:00
K900
766fda1033
kdePackages.calligra: 3.2.1 -> 4.0.1 ( #344930 )
2024-09-28 08:54:38 +03:00
Fernando Rodrigues
f150e3d3a0
calligra: move to pkgs/kde
...
Calligra's information is generated alongside the usual KDE updates, so
let's make use of them.
Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2024-09-27 18:46:36 +00:00
Artturin
3876b1b05b
Fix cross-compilation eval failures ( #344499 )
2024-09-27 21:27:30 +03:00
R. Ryantm
32f23f364f
tryton: 7.2.5 -> 7.2.6
2024-09-27 16:42:57 +00:00
R. Ryantm
b4fafd67f8
qownnotes: 24.9.6 -> 24.9.7
2024-09-27 07:12:49 +00:00
R. Ryantm
bdf7e63b54
super-productivity: 9.0.5 -> 10.0.11
2024-09-27 06:04:21 +00:00
Artturin
a70951ade3
appflowy: Fix missing attribute on aarch64-linux
2024-09-26 03:48:21 +03:00
Sandro
3a000f5976
paperless-ngx: 2.11.6 -> 2.12.1 ( #343643 )
2024-09-25 17:08:03 +02:00
Bobby Rong
2602ef1f70
planify: 4.11.2 -> 4.11.4 ( #344061 )
2024-09-25 20:48:38 +08:00
Artturin
e0464e4788
treewide: replace stdenv.is
with stdenv.hostPlatform.is
...
In preparation for the deprecation of `stdenv.isX`.
These shorthands are not conducive to cross-compilation because they
hide the platforms.
Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way
One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059
There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.
```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Robert Schütz
325c42a315
paperless-ngx: 2.11.6 -> 2.12.1
...
Diff: https://github.com/paperless-ngx/paperless-ngx/compare/refs/tags/v2.11.6...v2.12.1
Changelog: https://github.com/paperless-ngx/paperless-ngx/releases/tag/v2.12.0
https://github.com/paperless-ngx/paperless-ngx/releases/tag/v2.12.1
2024-09-24 11:41:49 -07:00
R. Ryantm
57710d3f2c
planify: 4.11.2 -> 4.11.4
2024-09-23 21:09:56 +00:00
Frank Lanitz
3c59a7e43f
homebank: move to pkgs/by-name
2024-09-20 10:33:21 +02:00
Fabián Heredia Montiel
b71e97cbaa
qownnotes: 24.9.1 -> 24.9.6 ( #342172 )
2024-09-17 00:29:01 -06:00
Aleksana
a2cad4db0b
treewide: migrate packages to by-name ( #341412 )
2024-09-17 11:17:16 +08:00
Anderson Torres
f0e64ce16f
treewide: migrate packages maintained by AndersonTorres to by-name
...
Manual migration for the sake of by-name migration is no longer discouraged
since #340235 .
2024-09-16 14:26:47 -03:00
R. Ryantm
0586b3d424
qownnotes: 24.9.1 -> 24.9.6
2024-09-15 23:42:57 +00:00
Wolfgang Walther
90914ee74f
qpdfview: fix build
...
With structuredAttrs support in 1bcca7d66b
this broke, because the following line turns qmakeFlags from a string
into an array:
qmakeFlags+=(...)
It will then be handled slightly different when it's an array, so that
all the xxx_INSTALL_PATH variables are passed as a *single* argument,
which breaks the build.
Resolves #342087
2024-09-15 17:55:09 +02:00
OTABI Tomoya
2a19dcb80a
tryton: 7.2.4 -> 7.2.5 ( #339773 )
2024-09-15 11:37:30 +09:00
natsukium
466af1a6b4
tryton: avoid double wrapping
2024-09-14 10:38:08 +09:00
R. Ryantm
ecb02d37b5
planify: 4.11.0 -> 4.11.2
2024-09-14 01:34:19 +00:00
natsukium
1bc559ed43
tryton: build with pypaBuildHook
2024-09-14 10:31:43 +09:00
OTABI Tomoya
9cef2898eb
morgen: 3.5.5 -> 3.5.6 ( #340741 )
2024-09-13 11:59:53 +09:00
Mathew Polzin
5696278271
notes: 2.2.1 -> 2.3.0 ( #338613 )
2024-09-11 10:06:44 -05:00
Weijia Wang
b49f260b8b
paperwork: 2.2.3 -> 2.2.5 ( #338434 )
2024-09-09 16:55:59 +02:00
R. Ryantm
d27ff4322a
morgen: 3.5.5 -> 3.5.6
2024-09-09 10:29:51 +00:00
R. Ryantm
5cef496f23
treesheets: 0-unstable-2024-08-25 -> 0-unstable-2024-09-08
2024-09-09 06:10:41 +00:00
Nick Cao
7a71e62c39
super-productivity: 8.0.10 -> 9.0.5 ( #328216 )
2024-09-08 09:38:46 -04:00
Nick Cao
994d1da9c8
treesheets: 0-unstable-2024-06-29 -> 0-unstable-2024-08-25 ( #327111 )
2024-09-08 09:32:16 -04:00
Sebastián Mancilla
2e0c017c27
appflowy: 0.6.6 -> 0.6.8 ( #334467 )
2024-09-05 19:05:24 -04:00
R. Ryantm
26226abeed
tryton: 7.2.4 -> 7.2.5
2024-09-05 11:17:56 +00:00
R. Ryantm
b4fff4897c
qownnotes: 24.9.0 -> 24.9.1
2024-09-05 05:11:58 +00:00
DarkOnion0
a4e033f90c
appflowy: 0.6.7.2 -> 0.6.8
...
https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.6.8
2024-09-04 20:39:51 +02:00
R. Ryantm
31e42275fb
beamerpresenter: 0.2.4 -> 0.2.5
2024-09-02 10:38:43 +00:00
Pol Dellaiera
48ca0efac3
zotero: 7.0 -> 7.0.3 ( #338458 )
2024-09-01 21:20:43 +02:00
zendo
7bd29c7ddf
notes: move to by-name
2024-08-31 21:00:28 +08:00
Bobby Rong
d6b4401cdf
planify: 4.10.8 -> 4.11.0 ( #338187 )
2024-08-31 17:15:31 +08:00
DarkOnion0
f170538258
appflowy: 0.6.7.1 -> 0.6.7.2
...
https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.6.7.2
2024-08-31 10:13:09 +02:00
rewine
192e7407cc
qownnotes: 24.8.5 -> 24.9.0 ( #338446 )
2024-08-31 09:22:12 +08:00
Yt
4dd3c85ad5
{prisma,prisma-engines}: 5.16.1 -> 5.18.0 ( #337521 )
2024-08-31 00:15:53 +00:00
Stephen Stubbs
1a3c43de1f
zotero: 7.0 -> 7.0.3
2024-08-30 20:18:48 +01:00
Simon Žlender
dcbcaee4cf
prisma: init at 5.18.0
2024-08-30 21:12:54 +02:00
Patrizio Bekerle
0482eb3714
qownnotes: 24.8.5 -> 24.9.0
...
Signed-off-by: Patrizio Bekerle <patrizio@bekerle.com>
2024-08-30 20:31:03 +02:00
R. Ryantm
34587b9f7e
paperwork: 2.2.3 -> 2.2.5
2024-08-30 16:32:53 +00:00
R. Ryantm
a5582acfeb
planify: 4.10.8 -> 4.11.0
2024-08-29 13:47:36 +00:00
Peder Bergebakken Sundt
c477a48699
treewide: replace all pytest-cov patching outside of pythonPackages with pytest-cov-stub ( #336777 )
2024-08-28 22:17:38 -04:00
Sandro Jäckel
ca355f14c8
treewide: replace all pytest-cov patching outside of pythonPackages with pytest-cov-stub
2024-08-27 20:47:13 +02:00
R. Ryantm
9e7fcb7e19
treesheets: 0-unstable-2024-06-29 -> 0-unstable-2024-08-25
2024-08-27 08:32:03 +00:00
Sandro
6b4d280cf5
Merge pull request #336797 from SuperSandro2000/paperless-ngx
2024-08-26 11:47:01 +02:00
7c6f434c
8487207876
Merge pull request #337094 from OPNA2608/init/lomiri/lomiri-docviewer-app
...
lomiri.lomiri-docviewer-app: init at 3.0.4
2024-08-26 05:40:34 +00:00
OTABI Tomoya
aaab68cacc
Merge pull request #327309 from r-ryantm/auto-update/morgen
...
morgen: 3.5.1 -> 3.5.5
2024-08-26 09:23:41 +09:00
Sandro Jäckel
7986bdf980
paperless-ngx: 2.11.4 -> 2.11.6
2024-08-25 22:01:09 +02:00
Sandro Jäckel
bb69775568
paperless-ngx: drop inactive maintainers, add myself to maintainers
2024-08-25 21:39:54 +02:00
K900
d478563d72
libreoffice: still 7.6 -> 24.2, fresh 24.2 -> 24.8, more cleanups, more system deps
2024-08-25 18:34:50 +03:00
OPNA2608
928c634a65
libreoffice: Install LibreOfficeKit headers
2024-08-24 14:40:34 +02:00
R. Ryantm
8cdbfd38e9
planify: 4.10.7 -> 4.10.8
2024-08-21 21:20:57 +08:00
R. Ryantm
48a9a6a9b3
morgen: 3.5.1 -> 3.5.5
2024-08-21 09:43:51 +00:00
Sandro Jäckel
a1d5c9d11a
paperless-ngx: change symlink to work with compressDrvWeb
...
Before compressDrvWeb would follow the frontend symlink into the nix
store and couldn't write it's file into the directories below the
symlink. lndir creates all dirs and then symlinks the actual files into
them which allows compressDrvWeb to place the compressed variants next
to them.
2024-08-19 13:17:07 +02:00
Peder Bergebakken Sundt
2ba57f30da
Merge pull request #334083 from jakuzure/roam-research-0.0.22
...
roam-research: 0.0.19 -> 0.0.22
2024-08-17 23:02:40 +02:00
DarkOnion0
3887cb3550
appflowy: 0.6.7 -> 0.6.7.1
...
https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.6.7.1
2024-08-17 19:34:34 +02:00
Felix Buehler
871363c075
tryton: remove 'with lib;'
2024-08-16 16:09:03 +02:00
DarkOnion0
e03a930dc3
appflowy: 0.6.6 -> 0.6.7
...
https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.6.7
2024-08-15 10:13:54 +02:00
rewine
436b138ed8
Merge pull request #334463 from pbek/qownnotes
...
qownnotes: 24.8.3 -> 24.8.5
2024-08-14 22:30:04 +08:00
Patrizio Bekerle
4e96e0455c
qownnotes: 24.8.3 -> 24.8.5
...
Signed-off-by: Patrizio Bekerle <patrizio@bekerle.com>
2024-08-14 08:48:46 +02:00
Sebastián Mancilla
1782c50620
Merge pull request #332525 from r-ryantm/auto-update/gnote
...
gnote: 46.0 -> 46.1
2024-08-13 22:07:50 -04:00
Pascal Bach
1efd4ecfee
paperless-ngx: 2.11.3 -> 2.11.4
...
Co-authored-by: Phani Rithvij <phanirithvij2000@gmail.com>
2024-08-13 16:34:18 +02:00
Sandro Jäckel
dd8508f6c0
paperless-ngx: 2.11.2 -> 2.11.3
2024-08-13 16:34:18 +02:00
Robert Schütz
bd909c86cf
Merge pull request #334202 from dotlambda/ledger-autosync
...
ledger-autosync: fix build with Python 3.12 and don't propagate ledger and hledger
2024-08-13 00:58:36 -07:00
Robert Schütz
9faf61f9fb
ledger-autosync: move to pkgs/by-name
2024-08-12 12:11:32 -07:00
Robert Schütz
9ec4473be5
ledger-autosync: modernize
2024-08-12 12:11:32 -07:00
Robert Schütz
d11932af64
ledger-autosync: don't propagate ledger and hledger
...
The one available in $PATH is automatically selected.
Also remove other superfluous dependencies.
2024-08-12 12:11:32 -07:00
Robert Schütz
9ec78f5bc1
ledger-autosync: fix build with Python 3.12
2024-08-12 12:11:26 -07:00
Jakuzure Nonon
637fbd706e
roam-research: 0.0.19 -> 0.0.22
...
darwin: change undmg to _7zz, see https://github.com/NixOS/nixpkgs/pull/289900
2024-08-12 10:22:06 +02:00
R. Ryantm
927ad17355
planify: 4.10.5 -> 4.10.7
2024-08-12 04:01:43 +00:00
Pol Dellaiera
595f7405f8
Merge pull request #333601 from r-ryantm/auto-update/tryton
...
tryton: 7.2.3 -> 7.2.4
2024-08-11 20:37:26 +02:00
Steven Kou
25b5b38803
zotero: 6.0.35 -> 7.0
2024-08-11 16:11:25 +08:00
Pol Dellaiera
033c466feb
Merge pull request #333754 from Xaver106/bump-ticktick
...
ticktick: 2.0.30 -> 6.0.0
2024-08-11 00:59:48 +02:00
Xaver106
78132ff6bc
ticktick: 2.0.30 -> 6.0.0
2024-08-10 19:40:23 +02:00