github-actions[bot]
568f381221
Merge master into staging-next
2024-01-23 12:01:17 +00:00
Yureka
46f1dbf40d
blender: build with openexr 3
2024-01-23 12:35:06 +01:00
Yureka
ce95061d7d
prusa-slicer: openvdb overrideAttrs -> override
2024-01-23 12:35:06 +01:00
Naïm Favier
287694981a
Merge pull request #283180 from trofi/weechat-unwrapped-update
...
weechat-unwrapped: 4.2.0 -> 4.2.1
2024-01-23 12:14:36 +01:00
embr
b43bb235ef
syncterm: Cherry-pick upstream fixes for pthread_yield
errors
...
This non-standard function has been deprecated since glibc 2.34 (August 2021),
and calls to it were breaking the build. This has since been fixed in the
upstream Synchronet tree, from which SyncTERM releases are cut, but this was
last done in 2020.
Big thanks to @aexoxea, who not only dug into this, but adapted the upstream
patches to the SyncTERM tree and posted almost this exact diff in #174749 -
where it completely slipped my mind until now, sorry!
Fixes #174749
2024-01-23 11:38:30 +01:00
Sergei Trofimovich
63d379b04b
weechat-unwrapped: 4.2.0 -> 4.2.1
...
Changes: https://weechat.org/files/releasenotes/ReleaseNotes-devel.html#v4.2.1
2024-01-23 10:23:34 +00:00
Sandro
a9767322d0
Merge pull request #274739 from 3JlOy-PYCCKUi/anilibria-winmaclinux
...
anilibria-winmaclinux: 1.2.12 -> 1.2.14
2024-01-23 10:28:00 +01:00
Weijia Wang
521e625bc1
Merge pull request #283116 from r-ryantm/auto-update/qpwgraph
...
qpwgraph: 0.6.1 -> 0.6.2
2024-01-23 09:33:33 +01:00
Thomas BESSOU
b557c429ca
streamlink-twitch-gui-bin: add meta.mainProgram
...
So that `nix run` works
2024-01-23 08:18:53 +01:00
R. Ryantm
4b0c410a7e
qpwgraph: 0.6.1 -> 0.6.2
2024-01-23 06:34:15 +00:00
Weijia Wang
9e3c309c9a
Merge pull request #280828 from katexochen/docker-machine/remove
...
docker-machine{,-kvm,-xhyve}: remove
2024-01-23 07:15:59 +01:00
github-actions[bot]
70e275b1cb
Merge master into staging-next
2024-01-23 06:00:55 +00:00
Weijia Wang
9dbf5074db
Merge pull request #280563 from impl/keepassrpc-1.16.0
...
keepass-keepassrpc: 1.14.0 -> 1.16.0
2024-01-23 06:59:49 +01:00
Franz Pletz
7faa0f15fe
Merge pull request #275221 from hufman/patch-obs-arm64
...
obs-studio: patch to fix libobs.po on arm64
2024-01-23 06:37:22 +01:00
Peder Bergebakken Sundt
4d3d04cfd3
Merge pull request #282871 from trofi/bsnes-hd-gcc-13-fix
...
bsnes-hd: pull upstream `gcc-13` fix
2024-01-23 03:13:08 +01:00
Peder Bergebakken Sundt
b01c493119
Merge pull request #281758 from r-ryantm/auto-update/legit
...
legit: 1.2.0 -> 1.2.0.post0
2024-01-23 03:08:18 +01:00
Weijia Wang
1079b3fb6e
Merge pull request #278145 from r-ryantm/auto-update/microsoft-edge
...
microsoft-edge: 120.0.2210.77 -> 120.0.2210.144
2024-01-23 02:21:31 +01:00
Noah Fontes
fac5d65455
keepass-keepassrpc: 1.14.0 -> 1.16.0
2024-01-23 02:03:23 +01:00
Weijia Wang
da72af0961
Merge pull request #281282 from Icy-Thought/upscayl
...
upscayl: 2.9.5 -> 2.9.8
2024-01-23 02:01:27 +01:00
github-actions[bot]
8303a96c2d
Merge master into staging-next
2024-01-23 00:02:30 +00:00
Cosima Neidahl
ef178a6131
Merge pull request #281918 from mfrischknecht/fix-foxotron
...
foxotron: fix build due to deprecated C stdint import in vendored dependency
2024-01-23 00:35:33 +01:00
Peder Bergebakken Sundt
5d4dd2a364
Merge pull request #277891 from greizgh/f3d-broken
...
f3d: mark broken
2024-01-22 23:42:38 +01:00
Ryan Hendrickson
71e49b4120
Merge pull request #276633 from zendo/upd/songrec
...
songrec: 0.3.3 -> 0.4.1
2024-01-22 17:02:37 -05:00
Nick Cao
b5fea46f01
Merge pull request #282949 from r-ryantm/auto-update/tuifimanager
...
tuifimanager: 3.3.1 -> 3.3.5
2024-01-22 17:00:19 -05:00
Nick Cao
2ec555b4cb
Merge pull request #282959 from TomaSajt/simulide
...
simulide_1_1_0: use corrected upstream source
2024-01-22 16:57:57 -05:00
Felix Bühler
f35e0b7d21
Merge pull request #282714 from wegank/sony-headphones-client
...
sony-headphones-client: fix build with gcc 13
2024-01-22 22:32:18 +01:00
Manuel Frischknecht
5ff0ef514f
foxotron: fetch assimp patches to fix build
...
Foxotron vendors a lot of dependencies (see the `external` directory and
the various submodules it contains). One of them (`FBX`) fails to build
with current versions of GCC because the compiler cannot resolve the
type `std::uint32_t`. The affected file still imports the type via
`#include <stdint.h>`, which has been superseded by `#include <cstdint>`
in C++11.
The upstream patch applied here fixes this build issue by introducing
the missing include line of `<cstdint>`.
The new addition to `postPatch` disables a `-Werror` setting that
(currently) seemingly only causes assimp builds failures on darwin.
Co-authored-by: Cosima Neidahl <opna2608@protonmail.com>
2024-01-22 21:24:20 +01:00
Anderson Torres
522c89c370
melonDS: 0.9.5 -> 0.9.5-unstable-2024-01-17 ( #282620 )
...
* melonDS: refactor
- extra dependency: zstd
- finalAttrs design pattern
- get rid of nested with
- add AndersonTorres as maintainer
* melonDS: set strictDeps as true
- Why does it not find extra-cmake-modules in nativeBuildInputs?
Let's mark it on issue https://github.com/NixOS/nixpkgs/issues/178468
* melonDS: 0.9.5 -> 0.9.5-unstable-2024-01-17
2024-01-22 14:41:08 -05:00
Nick Cao
647fcae939
Merge pull request #282057 from LostAttractor/qq
...
qq: 3.2.3-20201 -> 3.2.5-20979
2024-01-22 14:39:47 -05:00
Weijia Wang
f1e512235c
Merge pull request #282663 from wegank/stormlib-refactor
...
stormlib: fix build on darwin, refactor
2024-01-22 20:08:16 +01:00
github-actions[bot]
3c7375b75c
Merge master into staging-next
2024-01-22 18:00:55 +00:00
TomaSajt
62204e05fa
simulide_1_1_0: use corrected upstream source
2024-01-22 18:49:22 +01:00
Nick Cao
02d7f3b56c
Merge pull request #282911 from yayayayaka/element-1.11.55
...
element-{web,desktop}: 1.11.54 -> 1.11.55
2024-01-22 12:25:20 -05:00
maxine
e86007813d
Merge pull request #282366 from r-ryantm/auto-update/cemu
...
cemu: 2.0-61 -> 2.0-65
2024-01-22 18:23:11 +01:00
maxine
11697e856d
Merge pull request #282670 from r-ryantm/auto-update/kubecm
...
kubecm: 0.26.0 -> 0.27.1
2024-01-22 18:16:39 +01:00
maxine
122f7d6f6f
Merge pull request #282665 from r-ryantm/auto-update/oxker
...
oxker: 0.5.0 -> 0.6.0
2024-01-22 18:15:18 +01:00
maxine
f3fdd9414d
Merge pull request #282693 from r-ryantm/auto-update/kaniko
...
kaniko: 1.19.2 -> 1.20.0
2024-01-22 18:15:05 +01:00
maxine
1efae68415
Merge pull request #282747 from r-ryantm/auto-update/ipatool
...
ipatool: 2.1.3 -> 2.1.4
2024-01-22 18:14:13 +01:00
maxine
9876e8294f
Merge pull request #282943 from r-ryantm/auto-update/yazi
...
yazi: 0.2.1 -> 0.2.2
2024-01-22 18:13:13 +01:00
R. Ryantm
ea0ae5d2bc
tuifimanager: 3.3.1 -> 3.3.5
2024-01-22 16:49:36 +00:00
R. Ryantm
97b2b4452e
microsoft-edge: 120.0.2210.77 -> 120.0.2210.144
2024-01-22 16:42:02 +00:00
Nick Cao
2a5f24096d
Merge pull request #282916 from r-ryantm/auto-update/eigenmath
...
eigenmath: unstable-2023-12-31 -> unstable-2024-01-22
2024-01-22 11:21:18 -05:00
Nikolay Korotkiy
5de595f655
Merge pull request #282125 from sikmir/josm
...
josm: 18907 → 18940
2024-01-22 20:14:27 +04:00
R. Ryantm
637f9c7a1a
yazi: 0.2.1 -> 0.2.2
2024-01-22 16:14:09 +00:00
Nick Cao
f048098f0b
Merge pull request #282858 from r-ryantm/auto-update/tuba
...
tuba: 0.6.1 -> 0.6.2
2024-01-22 10:08:01 -05:00
markuskowa
e6e941f341
Merge pull request #282890 from sheepforce/molcas-fix
...
openmolcas: fix pyparsing >= 3.11 compatibility
2024-01-22 15:54:31 +01:00
R. Ryantm
11e3813729
eigenmath: unstable-2023-12-31 -> unstable-2024-01-22
2024-01-22 14:34:43 +00:00
R. Ryantm
905fa5072a
vscodium: 1.85.1.23348 -> 1.85.2.24019
2024-01-22 22:17:59 +08:00
Phillip Seeber
9ad625fdfa
openmolcas: fix pyparsing >= 3.11 compatibility
2024-01-22 15:09:57 +01:00
Yaya
4e6a53c699
element-{web,desktop}: 1.11.54 -> 1.11.55
...
https://github.com/element-hq/element-desktop/releases/tag/v1.11.55
https://github.com/element-hq/element-web/releases/tag/v1.11.55
2024-01-22 14:55:50 +01:00