Commit Graph

4190 Commits

Author SHA1 Message Date
R. RyanTM
1c5513a4b9
zotero: 7.0.7 -> 7.0.8 (#349542) 2024-10-25 17:36:33 +01:00
Philip Taron
4dbb808a7d
treewide: use stdenv.buildPlatform.canExecute (#350195) 2024-10-23 13:05:50 -07:00
Aleksana
285b9e7e81
abiword: switch to a live source (#349347) 2024-10-23 16:51:34 +08:00
Peder Bergebakken Sundt
7ef881b7ef kmymoney: use stdenv.buildPlatform.canExecute 2024-10-21 11:34:20 +02:00
Peder Bergebakken Sundt
a0f619278c
appflowy: 0.6.8 -> 0.7.1 (#347730) 2024-10-19 04:51:19 +02:00
jopejoe1
b7bf99ac50 abiword: use a live src 2024-10-17 21:12:09 +02:00
Robert Schütz
1b445bb575
python312Packages.icalendar: 5.0.13 -> 6.0.0 (#328227) 2024-10-13 20:29:14 -07: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
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
b4fafd67f8 qownnotes: 24.9.6 -> 24.9.7 2024-09-27 07:12:49 +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