Fabian Affolter
f07d335859
gapcast: init at 1.0.3 ( #340971 )
2024-09-25 00:40:52 +02:00
Nick Cao
bb55d79c1b
python312Packages.watermark: 2.4.0 -> 2.5.0 ( #343410 )
2024-09-24 18:38:55 -04:00
Nick Cao
2fb0e017bd
storj-uplink: 1.111.4 -> 1.113.4 ( #343615 )
2024-09-24 18:37:47 -04:00
Nick Cao
51897a2a55
dpp: 10.0.30 -> 10.0.31 ( #343626 )
2024-09-24 18:37:31 -04:00
Nick Cao
afcc88b055
tunwg: 24.01.15+9f04d73 -> 24.09.18+760ee81 ( #342942 )
2024-09-24 18:35:03 -04:00
Fabian Affolter
46947fd291
python312Packages.types-aiobotocore-*: 2.15.0 -> 2.15.1 ( #344070 )
2024-09-25 00:34:22 +02:00
Nick Cao
b9ce285c1f
i3bar-river: 0.1.10 -> 1.0.0 ( #342964 )
2024-09-24 18:34:05 -04:00
Nick Cao
490d9aab87
rqlite: 8.30.0 -> 8.30.3 ( #342968 )
2024-09-24 18:33:27 -04:00
Nick Cao
c408b26853
kokkos: 4.4.00 -> 4.4.01 ( #343037 )
2024-09-24 18:25:50 -04:00
Nick Cao
9bc683936b
sbt-extras: 2024-07-10 -> 2024-09-13 ( #343143 )
2024-09-24 18:25:02 -04:00
Nick Cao
a53212de98
git-quick-stats: 2.5.6 -> 2.5.7 ( #343165 )
2024-09-24 18:24:21 -04:00
Nick Cao
040a1794a4
vwsfriend: 0.24.5 -> 0.24.7 ( #343237 )
2024-09-24 18:23:15 -04:00
Nick Cao
0ecffd6c3f
drawterm: 0-unstable-2024-09-08 -> 0-unstable-2024-09-09 ( #343255 )
2024-09-24 18:22:24 -04:00
Nick Cao
6d3190dc29
praat: 6.4.19 -> 6.4.20 ( #343259 )
2024-09-24 18:21:36 -04:00
Nick Cao
14dd3c11cf
argo: 3.5.10 -> 3.5.11 ( #343299 )
2024-09-24 18:20:43 -04:00
Nick Cao
976ab75eb4
usb-modeswitch: set mainProgram
( #344226 )
2024-09-24 18:12:12 -04:00
Nick Cao
6c424f0cdc
python312Packages.easyocr: 1.7.1 -> 1.7.2 ( #344235 )
2024-09-24 18:11:14 -04:00
Nick Cao
21ab52f81b
python312Packages.myst-nb: 1.1.1 -> 1.1.2 ( #344241 )
2024-09-24 18:10:37 -04:00
Nick Cao
d84fc5fe9a
python312Packages.iminuit: 2.29.1 -> 2.30.0 ( #344256 )
2024-09-24 18:07:57 -04:00
Nick Cao
dbd97393f2
raspberrypifw: 1.20240902 -> 1.20240924 ( #344258 )
2024-09-24 18:06:47 -04:00
Nick Cao
a10dbbe70b
pulumi-bin: 3.133.0 -> 3.134.0 ( #344200 )
2024-09-24 18:05:07 -04:00
Nick Cao
be3ec46d47
lxgw-neoxihei: 1.205 -> 1.206 ( #344202 )
2024-09-24 18:02:36 -04:00
Nick Cao
016f0de8b3
markdownlint-cli: 0.41.0 -> 0.42.0 ( #344224 )
2024-09-24 18:01:20 -04:00
Nick Cao
91f81980db
ansible-lint: 24.9.0 -> 24.9.2 ( #344129 )
2024-09-24 18:00:03 -04:00
Nick Cao
a019563e3b
glamoroustoolkit: 1.1.0 -> 1.1.2 ( #344146 )
2024-09-24 17:57:16 -04:00
Nick Cao
37ecb9c837
nelua: 0-unstable-2024-08-04 -> 0-unstable-2024-09-22 ( #344168 )
2024-09-24 17:53:56 -04:00
nixpkgs-merge-bot[bot]
3cd806f0f0
nwg-panel: 0.9.38 -> 0.9.39 ( #344197 )
2024-09-24 21:16:31 +00:00
Pol Dellaiera
5fea7ad909
ollama: fix rocm build ( #344236 )
2024-09-24 23:15:39 +02:00
Emily
492e9179ba
treewide: replace stdenv.is
with stdenv.hostPlatform.is
( #341407 )
2024-09-24 22:10:46 +01:00
Artturin
63fa53d97c
treewide: reformat files which need reformatting after
...
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
2024-09-25 00:04:39 +03: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
Gaetan Lepage
b883a06aae
python312Packages.coffea: 2024.8.3 -> 2024.9.0
...
Diff: https://github.com/CoffeaTeam/coffea/compare/refs/tags/v2024.8.3...v2024.9.0
Changelog: https://github.com/CoffeaTeam/coffea/releases/tag/v2024.9.0
2024-09-24 23:00:15 +02:00
Martin Weinelt
aaa7fb5840
nixos/{pretix,pretalx}: set up log rotation ( #343982 )
2024-09-24 22:48:17 +02:00
Philip Taron
a829e3a287
nixos/services.snapserver: fix regression introduced in #339099 by renaming local function ( #344243 )
2024-09-24 13:37:17 -07:00
Gaetan Lepage
949f861430
python312Packages.tensordict: skip test_functional which requires dynamo
2024-09-24 22:32:25 +02:00
Gaetan Lepage
a48052a5f7
python312Packages.torchaudio-bin: 2.4.0 -> 2.4.1
...
Diff: https://github.com/pytorch/audio/compare/refs/tags/v2.4.0...v2.4.1
Changelog: https://github.com/pytorch/audio/releases/tag/v2.4.1
2024-09-24 22:32:25 +02:00
Gaetan Lepage
04ca50fb7f
python312Packages.torchaudio: 2.4.0 -> 2.4.1
...
Diff: https://github.com/pytorch/audio/compare/refs/tags/v2.4.0...v2.4.1
Changelog: https://github.com/pytorch/audio/releases/tag/v2.4.1
2024-09-24 22:32:25 +02:00
Gaetan Lepage
34b8dc4efb
python312Packages.torchvision-bin: 0.19.0 -> 0.19.1
...
Diff:
https://github.com/pytorch/vision/compare/refs/tags/v0.19.0...v0.19.1
Changelog: https://github.com/pytorch/vision/releases/tag/v0.19.1
2024-09-24 22:32:25 +02:00
Gaetan Lepage
21a547a1e8
python312Packages.torchvision: 0.19.0 -> 0.19.1
...
Diff: https://github.com/pytorch/vision/compare/refs/tags/v0.19.0...v0.19.1
Changelog: https://github.com/pytorch/vision/releases/tag/v0.19.1
2024-09-24 22:32:25 +02:00
Gaetan Lepage
9964965a43
python312Packages.torch-bin: 2.4.0 -> 2.4.1
...
Diff:
https://github.com/pytorch/pytorch/compare/refs/tags/v2.4.0...v2.4.1
Changelog: https://github.com/pytorch/pytorch/releases/tag/v2.4.1
2024-09-24 22:32:25 +02:00
Gaetan Lepage
252b4e6e86
python312Packages.torch-bin: sort inputs correctly
2024-09-24 22:32:25 +02:00
Gaetan Lepage
2c6cd713f2
python312Packages.torch: 2.4.0 -> 2.4.1
...
Diff: https://github.com/pytorch/pytorch/compare/refs/tags/v2.4.0...v2.4.1
Changelog: https://github.com/pytorch/pytorch/releases/tag/v2.4.1
2024-09-24 22:32:25 +02:00
Maximilian Bosch
2a0f7e30e8
Merge: Revert "nixos/profiles/base: install vim w/nix-syntax plugin" ( #343800 )
2024-09-24 22:31:02 +02:00
Artturin
977411f10d
expand-response-params: Fix windows build ( #341299 )
2024-09-24 23:24:37 +03:00
Cosima Neidahl
54eba24b87
vulkan-memory-allocator: Apply fix to allow specifying version constraints on CMake module ( #341851 )
2024-09-24 22:22:25 +02:00
Robert Schütz
1ae01344a2
python312Packages.python-linkplay: 0.0.10 -> 0.0.11 ( #344295 )
2024-09-24 13:19:56 -07:00
Markus Kowalewski
4bcadb41cc
novelwriter: 2.5.1 -> 2.5.2 ( #342855 )
2024-09-24 22:12:40 +02:00
Markus Kowalewski
6a313867c6
murex: 6.2.4000 -> 6.3.4225 ( #342929 )
2024-09-24 22:10:18 +02:00
Markus Kowalewski
53ce8b1568
devspace: 6.3.12 -> 6.3.13 ( #343158 )
2024-09-24 22:08:55 +02:00
R. Ryantm
48a314372c
python312Packages.python-linkplay: 0.0.10 -> 0.0.11
2024-09-24 20:07:22 +00:00