Wolfgang Walther and GitHub
0fb31ceedb
sqlcl: 24.3.0.285.0530 -> 24.3.2.330.1718 ( #362122 )
2024-12-12 20:22:12 +01:00
Wolfgang Walther and GitHub
386a15ba92
bootstrap-studio: 6.7.3 -> 7.0.0 ( #362073 )
2024-12-12 20:20:41 +01:00
Wolfgang Walther and GitHub
7bd711ce36
zabbix-agent2-plugin-postgresql: 7.0.4 -> 7.0.6 ( #362063 )
2024-12-12 20:19:08 +01:00
Wolfgang Walther and GitHub
723764ee1c
vpl-gpu-rt: 24.3.3 -> 24.4.3 ( #362034 )
2024-12-12 20:18:36 +01:00
Fabian Affolter
a93c8173c9
python312Packages.tencentcloud-sdk-python: 3.0.1279 -> 3.0.1280
...
Diff: https://github.com/TencentCloud/tencentcloud-sdk-python/compare/refs/tags/3.0.1279...3.0.1280
Changelog: https://github.com/TencentCloud/tencentcloud-sdk-python/blob/3.0.1280/CHANGELOG.md
2024-12-12 20:17:27 +01:00
R. Ryantm
2ca4957333
check-jsonschema: 0.29.4 -> 0.30.0
2024-12-12 19:16:17 +00:00
Fabian Affolter
1c7903373c
python312Packages.monzopy: 1.4.2 -> 1.5.0
...
Diff: https://github.com/JakeMartin-ICL/monzopy/compare/refs/tags/v1.4.2...v1.5.0
Changelog: https://github.com/JakeMartin-ICL/monzopy/releases/tag/v1.5.0
2024-12-12 20:14:13 +01:00
Felix Buehler
4b71489c41
bolt-launcher: fix fhsenv version
2024-12-12 20:13:40 +01:00
Wolfgang Walther and GitHub
22ea194d70
gcompris: 4.2 -> 4.3 ( #362019 )
2024-12-12 20:12:46 +01:00
Wolfgang Walther and GitHub
724b993b7d
opensmtpd: 7.5.0p0 -> 7.6.0p1 ( #362004 )
2024-12-12 20:12:04 +01:00
Fabian Affolter
d8b2f3923a
python312Packages.mypy-boto3-sesv2: 1.35.53 -> 1.35.79
2024-12-12 20:11:46 +01:00
Fabian Affolter
0f81ce8939
python312Packages.mypy-boto3-s3: 1.35.76 -> 1.35.76.post1
2024-12-12 20:11:38 +01:00
Fabian Affolter
7861932f49
python312Packages.mypy-boto3-mgh: 1.35.0 -> 1.35.79
2024-12-12 20:11:22 +01:00
Fabian Affolter
02c435f14d
python312Packages.mypy-boto3-ivs-realtime: 1.35.32 -> 1.35.78
2024-12-12 20:11:09 +01:00
Fabian Affolter
8ff3f61006
python312Packages.mypy-boto3-finspace: 1.35.12 -> 1.35.78
2024-12-12 20:10:56 +01:00
Fabian Affolter
170d5a996e
python312Packages.mypy-boto3-emr-serverless: 1.35.25 -> 1.35.79
2024-12-12 20:10:54 +01:00
Fabian Affolter
88a4b0616a
python312Packages.mypy-boto3-connect: 1.35.72 -> 1.35.78
2024-12-12 20:10:44 +01:00
Fabian Affolter
e784a4b797
python312Packages.mypy-boto3-cognito-idp: 1.35.77 -> 1.35.79
2024-12-12 20:10:41 +01:00
Fabian Affolter
847b602160
python312Packages.mypy-boto3-cloudtrail: 1.35.67 -> 1.35.79
2024-12-12 20:10:36 +01:00
Fabian Affolter
29c8ae3fc8
python312Packages.mypy-boto3-application-autoscaling: 1.35.67 -> 1.35.78
2024-12-12 20:10:27 +01:00
Wolfgang Walther and GitHub
f88414945f
neo4j-desktop: 1.5.9 -> 1.6.0 ( #362015 )
2024-12-12 20:10:24 +01:00
Artturin
276fe40ff3
swift: Fix eval failure error: expected a string but found null: null
...
Dunno if this is correct, there's other `hostPlatform.isDarwin`
conditionals which may be wrong.
Leaving the other conditionals to swift maintainers or people who are
interested in swift cross-compilation
```
$ nix repl --file . --system aarch64-darwin
nix-repl> pkgsCross.aarch64-multiplatform.swift
«derivation /nix/store/kqbaqwdfc9g0yvkq4ffrlqspranprlmy-swift-wrapper-aarch64-unknown-linux-gnu-5.8.drv»
nix-repl> pkgsCross.aarch64-multiplatform.buildPackages.swift
error:
error: expected a string but found null: null
at /home/artturin/nixgits/my-nixpkgs/.worktree/2/pkgs/development/compilers/swift/compiler/default.nix:586:11:
585| #WATCHOS_SIMULATOR
586| }.${targetPlatform.darwinPlatform}}
| ^
587|
```
2024-12-12 21:09:56 +02:00
Artturin
8a6ca8f17c
nixpkgs-manual.{lib-docs,tests}: Fix cross build
2024-12-12 21:09:56 +02:00
Artturin
764c99481a
lib/tests/release.nix: Fix build if impure.nix returns a cross pkgs
...
In https://www.github.com/NixOS/nixpkgs/pull/341067 `ofborg-eval-lib-tests`
fails because it uses `pkgsHostTarget` of the cross pkgs
```diff
diff --git a/pkgs/top-level/impure.nix b/pkgs/top-level/impure.nix
index 4d847e280f4b..7f0099b254f0 100644
--- a/pkgs/top-level/impure.nix
+++ b/pkgs/top-level/impure.nix
@@ -86,4 +86,6 @@ assert args ? system -> !(args ? localSystem);
import ./. (builtins.removeAttrs args [ "system" ] // {
inherit config overlays localSystem;
-})
+} // (if ((localSystem.system or localSystem) == "x86_64-linux" || (localSystem.system or localSystem) == "aarch64-linux") then {
+ crossSystem = { config = "aarch64-unknown-linux-gnu"; };
+ } else {}) )
```
2024-12-12 21:09:56 +02:00
Fabian Affolter
0b91eddcc3
python312Packages.botocore-stubs: 1.35.78 -> 1.35.79
2024-12-12 20:09:49 +01:00
Fabian Affolter
10e68dd5aa
python312Packages.boto3-stubs: 1.35.78 -> 1.35.79
2024-12-12 20:09:45 +01:00
Fabian Affolter
91731ce78a
python311Packages.angr: 9.2.130 -> 9.2.132
...
Diff: https://github.com/angr/angr/compare/refs/tags/v9.2.130...v9.2.132
2024-12-12 20:09:05 +01:00
Wolfgang Walther and GitHub
3b7251693d
xlockmore: 5.80 -> 5.81 ( #362007 )
2024-12-12 20:08:57 +01:00
Noa Aarts and Weijia Wang
21af19c460
bandwhich: remove with lib from meta
2024-12-12 20:07:41 +01:00
Noa Aarts and Weijia Wang
2d42c0c54c
bandwhich: 0.23.0 -> 0.23.1
2024-12-12 20:07:41 +01:00
Noa Aarts and Weijia Wang
a18cb85d6d
bandwhich: move to by-name
2024-12-12 20:07:41 +01:00
Noa Aarts and Weijia Wang
5802f55b0b
bandwhich: use useFetchCargoVendor
2024-12-12 20:07:41 +01:00
R. Ryantm
a9e6d7a110
k3s_1_29: 1.29.10+k3s1 -> 1.29.11+k3s1
2024-12-12 19:07:28 +00:00
Wolfgang Walther and GitHub
8135554b06
libinput-gestures: 2.77 -> 2.78 ( #361978 )
2024-12-12 20:07:06 +01:00
Wolfgang Walther and GitHub
43f34cf7db
arduino-ide: 2.3.3 -> 2.3.4 ( #361937 )
2024-12-12 20:06:22 +01:00
Fabian Affolter
5f5bc127c5
python312Packages.cle: 9.2.130 -> 9.2.132
...
Diff: https://github.com/angr/cle/compare/refs/tags/v9.2.130...v9.2.132
2024-12-12 20:05:59 +01:00
Wolfgang Walther and GitHub
33c6ddbc48
fiji: 20240614-2117 -> 20241114-1317 ( #361288 )
2024-12-12 20:05:51 +01:00
R. Ryantm
eff9b530da
cockpit: 329.1 -> 330
2024-12-12 19:04:30 +00:00
Fabian Affolter
c40f1d9d69
python312Packages.claripy: 9.2.130 -> 9.2.132
...
Diff: https://github.com/angr/claripy/compare/refs/tags/v9.2.130...v9.2.132
2024-12-12 20:01:59 +01:00
Fabian Affolter
11cd005b2d
python312Packages.pyvex: 9.2.130 -> 9.2.132
2024-12-12 20:01:30 +01:00
Fabian Affolter
c9b880f6b1
python312Packages.ailment: 9.2.130 -> 9.2.132
...
Diff: https://github.com/angr/ailment/compare/refs/tags/v9.2.130...v9.2.132
2024-12-12 19:59:54 +01:00
Fabian Affolter
c30932494f
python312Packages.archinfo: 9.2.130 -> 9.2.132
...
Diff: https://github.com/angr/archinfo/compare/refs/tags/v9.2.130...v9.2.132
2024-12-12 19:58:48 +01:00
Fabian Affolter
f7ebac2152
python312Packages.aiortm: 0.9.42 -> 0.9.43
...
Diff: https://github.com/MartinHjelmare/aiortm/compare/refs/tags/v0.9.42...v0.9.43
Changelog: https://github.com/MartinHjelmare/aiortm/blob/v0.9.43/CHANGELOG.md
2024-12-12 19:56:52 +01:00
Fabian Affolter
fcc046ed81
python312Packages.aiohomeconnect: 0.6.4 -> 0.7.0
...
Diff: https://github.com/MartinHjelmare/aiohomeconnect/compare/refs/tags/v0.6.4...v0.7.0
Changelog: https://github.com/MartinHjelmare/aiohomeconnect/blob/refs/tags/v0.7.0/CHANGELOG.md
2024-12-12 19:55:35 +01:00
Pol Dellaiera and GitHub
7f6f4d968d
phpactor: 2024.11.28.0 -> 2024.11.28.1 ( #364670 )
2024-12-12 19:50:13 +01:00
R. Ryantm
680e216a93
watershot: 0.2.0 -> 0.2.2
2024-12-12 18:47:35 +00:00
Fabian Affolter and GitHub
dff46c854a
python312Packages.fnllm: 0.0.11 -> 0.0.12 ( #364582 )
2024-12-12 19:40:30 +01:00
Marcus Ramberg and GitHub
b3c3aaa0bf
nixos/k3s: make assertions about missing configuration options warnings ( #364370 )
2024-12-12 19:36:44 +01:00
R. Ryantm
0520504786
vgm2x: 0-unstable-2024-11-17 -> 0-unstable-2024-12-11
2024-12-12 18:33:52 +00:00
Noa Aarts and GitHub
824916ecc7
gnu-shepherd: 0.9.3 -> 1.0.0 ( #363881 )
2024-12-12 19:33:00 +01:00