TomaSajt
436fe7b59b
treewide: unify ant determinism methods
2024-03-17 13:35:55 +01:00
github-actions[bot]
2178d8d857
Merge master into staging-next
2024-03-17 00:02:17 +00:00
Nick Cao
f2a7e82e9a
Merge pull request #296386 from r-ryantm/auto-update/qownnotes
...
qownnotes: 24.3.1 -> 24.3.3
2024-03-16 11:59:03 -07:00
Weijia Wang
15eb79ee65
Merge pull request #295645 from Aleksanaa/iotas
...
iotas: 0.2.7 -> 0.2.10
2024-03-16 19:42:37 +01:00
Leona Maroni
276fcd6df7
Merge pull request #295931 from kilianar/portfolio-0.68.2
...
portfolio: 0.68.1 -> 0.68.2
2024-03-16 19:18:06 +01:00
R. Ryantm
796b530be5
qownnotes: 24.3.1 -> 24.3.3
2024-03-16 10:29:22 +00:00
R. Ryantm
fcdbe5b717
treesheets: unstable-2024-01-30 -> unstable-2024-03-14
2024-03-16 09:46:07 +00:00
aleksana
8988bbd387
iotas: 0.2.7 -> 0.2.10
2024-03-15 22:58:15 +08:00
github-actions[bot]
c160165e60
Merge master into staging-next
2024-03-14 18:01:26 +00:00
kilianar
f373199db5
portfolio: 0.68.1 -> 0.68.2
...
https://github.com/portfolio-performance/portfolio/releases/tag/0.68.2
2024-03-14 17:30:46 +01:00
R. Ryantm
783df5be33
timeular: 6.7.3 -> 6.7.5
2024-03-14 07:07:15 +00:00
github-actions[bot]
c866a07331
Merge master into staging-next
2024-03-14 06:01:12 +00:00
Mario Rodas
03bf7fc527
Merge pull request #295013 from kilianar/fava-1.27.3
...
fava: 1.27.2 -> 1.27.3
2024-03-13 20:37:00 -05:00
annalee
8e038835fe
Merge remote-tracking branch 'upstream/master' into staging-next
2024-03-13 00:38:07 +00:00
Pol Dellaiera
060e1ea463
Merge pull request #295242 from r-ryantm/auto-update/gnumeric
...
gnumeric: 1.12.56 -> 1.12.57
2024-03-12 22:03:07 +01:00
R. Ryantm
6b18da3892
qownnotes: 24.3.0 -> 24.3.1
2024-03-12 14:21:10 +00:00
R. Ryantm
1d85aa8783
gnumeric: 1.12.56 -> 1.12.57
2024-03-12 07:40:49 +00:00
github-actions[bot]
fd6d62aa3d
Merge staging-next into staging
2024-03-12 00:02:37 +00:00
7c6f434c
55dd0fa300
Merge pull request #295085 from VsQ90/add-fi-libreoffice
...
libreoffice: add finnish language
2024-03-11 23:06:31 +00:00
VsQ90
d5cff868bd
libreoffice: add finnish language
2024-03-11 23:44:50 +02:00
Robert Sliwinski
0897539a66
paperless-ngx: 2.6.1 -> 2.6.2
...
https://github.com/paperless-ngx/paperless-ngx/releases/tag/v2.6.2
https://github.com/paperless-ngx/paperless-ngx/compare/v2.6.1...v2.6.2
2024-03-11 20:41:12 +01:00
github-actions[bot]
06e5eb63d3
Merge staging-next into staging
2024-03-11 18:01:53 +00:00
kilianar
2fe4dd4790
fava: 1.27.2 -> 1.27.3
...
https://github.com/beancount/fava/releases/tag/v1.27.3
2024-03-11 16:22:24 +01:00
Nick Cao
1df6e81d4f
Merge pull request #294402 from r-ryantm/auto-update/zotero
...
zotero: 6.0.30 -> 6.0.35
2024-03-11 11:21:00 -04:00
a-n-n-a-l-e-e
ce789e7e35
llvmPackages_{12,13,14,15,16,17,git}.{libcxx,libcxxabi}: merge libcxxabi into libcxx ( #292043 )
...
- merge libcxxabi into libcxx for LLVM 12, 13, 14, 15, 16, 17, and git.
- remove the link time workaround `-lc++ -lc++abi` from 58 packages as it is no longer required.
- fixes https://github.com/NixOS/nixpkgs/issues/166205
- provides alternative fixes for. https://github.com/NixOS/nixpkgs/issues/269548 https://github.com/NixOS/nix/issues/9640
- pkgsCross.x86_64-freebsd builds work again
This change can be represented in 3 stages
1. merge libcxxabi into libcxx -- files: pkgs/development/compilers/llvm/[12, git]/{libcxx, libcxxabi}
2. update stdenv to account for merge -- files: stdenv.{adapters, cc.wrapper, darwin}
3. remove all references to libcxxabi outside of llvm (about 58 packages modified)
### merging libcxxabi into libcxx
- take the union of the libcxxabi and libcxx cmake flags
- eliminate the libcxx-headers-only package - it was only needed to break libcxx <-> libcxxabi circular dependency
- libcxx.cxxabi is removed. external cxxabi (freebsd) will symlink headers / libs into libcxx.
- darwin will re-export the libcxxabi symbols into libcxx so linking `-lc++` is sufficient.
- linux/freebsd `libc++.so` is a linker script `LINK(libc++.so.1, -lc++abi)` making `-lc++` sufficient.
- libcxx/default.nix [12, 17] are identical except for patches and `LIBCXX_ADDITIONAL_LIBRARIES` (only used in 16+)
- git/libcxx/defaul.nix does not link with -nostdlib when useLLVM is true so flag is removed. this is not much different than before as libcxxabi used -nostdlib where libcxx did not, so libc was linked in anyway.
### stdenv changes
- darwin bootstrap, remove references to libcxxabi and cxxabi
- cc-wrapper: remove c++ link workaround when libcxx.cxxabi doesn't exist (still exists for LLVM pre 12)
- adapter: update overrideLibcxx to account for a pkgs.stdenv that only has libcxx
### 58 package updates
- remove `NIX_LDFLAGS = "-l${stdenv.cc.libcxx.cxxabi.libName}` as no longer needed
- swift, nodejs_v8 remove libcxxabi references in the clang override
https://github.com/NixOS/nixpkgs/pull/292043
2024-03-11 03:53:37 -07:00
Nikolay Korotkiy
c0e30622eb
Merge pull request #294668 from r-ryantm/auto-update/tryton
...
tryton: 7.0.5 -> 7.0.7
2024-03-10 22:38:56 +04:00
Nick Cao
5a80609144
Merge pull request #294677 from r-ryantm/auto-update/portfolio
...
portfolio: 0.68.0 -> 0.68.1
2024-03-10 10:35:42 -04:00
R. Ryantm
a5ea5513ff
portfolio: 0.68.0 -> 0.68.1
2024-03-10 08:56:16 +00:00
Florian Klink
49845b5bb4
Merge pull request #294619 from TomaSajt/jameica
...
jameica: make deterministic and clean up
2024-03-10 10:01:58 +02:00
R. Ryantm
3bdabd59d3
tryton: 7.0.5 -> 7.0.7
2024-03-10 07:15:23 +00:00
TomaSajt
8d4e651526
jameica: make deterministic and clean up
2024-03-10 02:15:25 +01:00
R. Ryantm
fc3a993440
zotero: 6.0.30 -> 6.0.35
2024-03-09 01:31:34 +00:00
kilianar
1495f6e9f8
portfolio: 0.67.3 -> 0.68.0
...
https://github.com/portfolio-performance/portfolio/releases/tag/0.68.0
2024-03-08 21:35:31 +01:00
R. Ryantm
931cd34d96
qownnotes: 24.2.6 -> 24.3.0
2024-03-08 01:53:22 +00:00
Thiago Kenji Okada
1520f440ac
Merge pull request #285303 from hexclover/zotero-7-beta-56
...
zotero_7: beta 51 -> beta 65
2024-03-07 22:50:43 +00:00
Weijia Wang
99548b8d07
Merge pull request #285699 from r-ryantm/auto-update/timeular
...
timeular: 6.6.8 -> 6.7.3
2024-03-07 11:10:37 +01:00
Weijia Wang
e8538eda31
Merge pull request #292168 from r-ryantm/auto-update/mendeley
...
mendeley: 2.105.0 -> 2.110.2
2024-03-07 07:54:47 +01:00
Luke Granger-Brown
595b8c9b53
Merge pull request #293596 from leona-ya/paperless-2.6.1
...
paperless-ngx: 2.5.4 -> 2.6.1
2024-03-06 23:41:11 +00:00
Jon Seager
f7f0117701
Merge pull request #293748 from FliegendeWurst/trilium-0.63.3
...
trilium-{desktop,server}: 0.62.5 -> 0.63.3
2024-03-06 12:29:34 +00:00
James Armstrong
60b457f504
planify: 4.4 -> 4.5.2
...
https://github.com/alainm23/planify/compare/4.4...4.5.2
2024-03-06 20:26:01 +08:00
Elian Doran
3a5eca741a
trilium-{desktop,server}: 0.62.5 -> 0.63.3
...
Co-Authored-By: FliegendeWurst <2012gdwu+github@posteo.de>
2024-03-06 13:01:43 +01:00
Leona Maroni
92cb8dd5c7
paperless-ngx: 2.5.4 -> 2.6.1
...
https://github.com/paperless-ngx/paperless-ngx/releases/tag/v2.6.0
https://github.com/paperless-ngx/paperless-ngx/releases/tag/v2.6.1
2024-03-06 10:43:22 +01:00
R. Ryantm
8e496eee23
super-productivity: 8.0.0 -> 8.0.1
2024-03-04 15:02:13 +00:00
hexclover
9a0b1e1294
zotero_7: beta 51 -> beta 65
2024-03-03 13:23:33 +08:00
R. Ryantm
18de910fbb
qownnotes: 24.2.5 -> 24.2.6
2024-03-02 04:41:15 +00:00
Felix Buehler
833ed06040
ib-tws: deprecate phases
2024-02-29 22:18:24 +01:00
R. Ryantm
7a8be468c7
timeular: 6.6.8 -> 6.7.3
2024-02-29 20:08:40 +00:00
Franz Pletz
68514dfee0
Merge pull request #292181 from Stunkymonkey/moneyplex-remove
2024-02-29 01:41:49 +01:00
Felix Buehler
11f98c0d75
moneyplex: remove
...
unmaintained for years, never updated and the download no longer works.
2024-02-29 00:19:25 +01:00
R. Ryantm
e9ce556771
mendeley: 2.105.0 -> 2.110.2
2024-02-28 22:21:00 +00:00
Leona Maroni
f44e5ef4f9
paperless-ngx: 2.5.3 -> 2.5.4
...
https://github.com/paperless-ngx/paperless-ngx/releases/tag/v2.5.4
2024-02-27 19:59:42 +01:00
Peder Bergebakken Sundt
34f9da5f8c
Merge pull request #291081 from pokon548/fix-wps-link
...
wpsoffice{-cn}: 11.1.0.11711 -> 11.1.0.11719
2024-02-26 22:42:29 +01:00
Bu Kun
6d5db91a7f
wpsoffice{-cn}: 11.1.0.11711 -> 11.1.0.11719
2024-02-26 10:19:03 +08:00
Sandro Jäckel
11cc6bd798
paperless-ngx: cleanup dependencies
2024-02-25 04:08:08 +01:00
Sandro Jäckel
c13699ad67
paperless-ngx: 2.5.2 -> 2.5.3
2024-02-25 04:06:45 +01:00
Pascal Wittmann
40e7666189
Merge pull request #287750 from r-ryantm/auto-update/super-productivity
...
super-productivity: 7.17.2 -> 8.0.0
2024-02-20 21:42:44 +01:00
R. Ryantm
7984ed3777
qownnotes: 24.2.3 -> 24.2.5
2024-02-20 10:16:48 +00:00
OTABI Tomoya
fc137dce0b
Merge pull request #288863 from DarkOnion0/master
...
appflowy: 0.4.6 -> 0.4.9
2024-02-19 23:48:34 +09:00
DarkOnion0
2ce738fea7
appflowy: 0.4.6 -> 0.4.9
...
https://github.com/AppFlowy-IO/AppFlowy/releases/tag/0.4.9
2024-02-19 13:47:12 +01:00
Frank Lanitz
bfdbb6cf72
homebank: add frlan as maintainer
2024-02-18 11:48:20 +01:00
Patrizio Bekerle
4625f86517
qownnotes: 24.2.0 -> 24.2.3
2024-02-16 13:08:22 +01:00
Maximilian Bosch
4bd735b4dc
Merge pull request #287135 from r-ryantm/auto-update/homebank
...
homebank: 5.7.3 -> 5.7.4
2024-02-16 10:56:25 +01:00
Leona Maroni
d1a490d3a1
paperless-ngx: 2.5.0 -> 2.5.2
...
https://github.com/paperless-ngx/paperless-ngx/releases/tag/v2.5.2
https://github.com/paperless-ngx/paperless-ngx/releases/tag/v2.5.1
2024-02-15 13:37:41 +01:00
Peder Bergebakken Sundt
755d153a7a
Merge pull request #287915 from h7x4/treewide-add-main-program-4
...
treewide: add `mainProgram`
2024-02-15 01:45:40 +01:00
R. Ryantm
58c9f5b31a
paperwork: 2.2.1 -> 2.2.2
2024-02-13 11:24:43 +00:00
Weijia Wang
d8eab17aa9
Merge pull request #285888 from fin444/onlyoffice-8.0.0
...
onlyoffice-bin_latest: 7.5.1 -> 8.0.0
2024-02-11 19:08:20 +01:00
h7x4
8121f3559a
treewide: add mainProgram
2024-02-11 03:19:15 +01:00
Luke Granger-Brown
468324ce94
Merge pull request #287863 from leona-ya/paperless-ngx-2.5.0
...
paperless-ngx: 2.4.3 -> 2.5.0
2024-02-10 22:54:34 +00:00
Leona Maroni
61c77eadfb
paperless-ngx: 2.4.3 -> 2.5.0
...
https://github.com/paperless-ngx/paperless-ngx/releases/tag/v2.5.0
2024-02-10 21:39:21 +01:00
R. Ryantm
c2b2513131
super-productivity: 7.17.2 -> 8.0.0
2024-02-10 12:06:27 +00:00
maxine
8748b2ab7e
Merge pull request #286781 from amaxine/iotas_0.2.7
...
iotas: 0.2.2 → 0.2.7
2024-02-10 12:51:46 +01:00
maxine
4a898287d5
Merge pull request #286958 from r-ryantm/auto-update/morgen
...
morgen: 3.1.6 -> 3.2.2
2024-02-09 22:08:56 +01:00
R. Ryantm
07e40e3cff
qownnotes: 24.1.5 -> 24.2.0
2024-02-09 07:20:14 +00:00
R. Ryantm
7e0b9f767d
homebank: 5.7.3 -> 5.7.4
2024-02-08 05:05:06 +00:00
R. Ryantm
3de5cd743d
morgen: 3.1.6 -> 3.2.2
2024-02-07 09:53:03 +00:00
Maxine Aubrey
564e748777
iotas: 0.2.2 → 0.2.7
2024-02-06 18:45:24 +01:00
fin444
9d551ab298
onlyoffice-bin, onlyoffice-bin_latest: move to pkgs/by-name
2024-02-05 16:38:53 -05:00
Weijia Wang
ead22ed403
Merge pull request #285723 from r-ryantm/auto-update/appflowy
...
appflowy: 0.4.3 -> 0.4.6
2024-02-05 22:27:42 +01:00
R. Ryantm
9bd7e45343
appflowy: 0.4.3 -> 0.4.6
2024-02-05 14:58:07 +00:00
Nick Cao
b321dcb937
Merge pull request #286448 from r-ryantm/auto-update/fava
...
fava: 1.27.1 -> 1.27.2
2024-02-05 09:47:06 -05:00
Sandro
f5ab45b443
Merge pull request #283089 from linsui/jabref
2024-02-05 15:39:43 +01:00
R. Ryantm
82a2949b40
fava: 1.27.1 -> 1.27.2
2024-02-05 08:03:57 +00:00
Weijia Wang
31bec60ae6
Merge pull request #285285 from twillingham/ticktick-update
...
ticktick: 2.0.0 -> 2.0.10
2024-02-05 00:44:51 +01:00
Weijia Wang
9efe5fa567
Merge pull request #282740 from r-ryantm/auto-update/pympress
...
pympress: 1.8.4 -> 1.8.5
2024-02-04 23:48:00 +01:00
Robert Schütz
3a14963d61
Merge pull request #285893 from dotlambda/pdfmixtool-fix
...
pdfmixtool: fix build
2024-02-03 16:43:55 +00:00
Robert Schütz
8842051f99
pdfmixtool: fix build
...
apply https://gitlab.com/scarpetta/pdfmixtool/-/merge_requests/14
2024-02-02 12:59:14 -08:00
fin444
42a8cabeeb
onlyoffice-bin_latest: 7.5.1 -> 8.0.0
2024-02-02 14:54:12 -05:00
kilianar
ee5e5d9c12
portfolio: 0.67.2 -> 0.67.3
...
https://github.com/portfolio-performance/portfolio/releases/tag/0.67.3
2024-02-02 10:39:24 +01:00
Florian Klink
185474c3ec
Merge pull request #285625 from flokli/jameica-update
...
jameica: 2.10.2 -> 2.10.4
2024-02-02 01:30:01 +02:00
Florian Klink
ce50ab7ff4
jameica: 2.10.2 -> 2.10.4
2024-02-01 22:22:10 +02:00
Atemu
f38bca1ca5
Merge pull request #279677 from leona-ya/paperless-nltk
...
nixos/paperless: use nltk_data package as NLTK data source
2024-02-01 16:59:28 +01:00
Leona Maroni
3d195bb859
paperless-ngx: add passthru.nltkData
...
This is used in the NixOS module to build the NLTK data directory
2024-02-01 16:53:20 +01:00
Nick Cao
d6a79f123c
Merge pull request #285367 from r-ryantm/auto-update/treesheets
...
treesheets: unstable-2024-01-26 -> unstable-2024-01-30
2024-02-01 08:58:11 -05:00
R. Ryantm
d331e99c41
treesheets: unstable-2024-01-26 -> unstable-2024-01-30
2024-01-31 20:56:02 +00:00
Pol Dellaiera
3acdcfcd4b
Merge pull request #285044 from LeSuisse/libreoffice-bin-set-source-provnance
...
libreoffice-bin: set meta.sourceProvenance
2024-01-31 21:54:58 +01:00
Tyler Willingham
509b6f2553
TickTick: 2.0.0 -> 2.0.10
2024-01-31 11:15:42 -05:00
Peder Bergebakken Sundt
aa10fea3ef
Merge pull request #222817 from SuperSandro2000/python-sitePackages
...
treewide: replace `lib/${python.libPrefix}/site-packages` with its sh…
2024-01-31 16:34:30 +01:00
h7x4
80446e8cab
Merge pull request #285189 from r-ryantm/auto-update/qownnotes
...
qownnotes: 24.1.4 -> 24.1.5
2024-01-31 08:01:55 +01:00
R. Ryantm
2877637450
qownnotes: 24.1.4 -> 24.1.5
2024-01-31 04:48:40 +00:00
Sandro Jäckel
653837881e
treewide: replace lib/${python.libPrefix}/site-packages
with its shorthand ${python.sitePackages}
...
which should be always preferred
2024-01-30 19:56:57 +01:00