Weijia Wang
7ff4d9b006
hcloud: 1.66.0 -> 1.67.0 ( #545276 )
2026-08-17 22:22:56 +00:00
Weijia Wang
bae46fc962
hcledit: 0.2.17 -> 0.2.18 ( #517020 )
2026-08-16 14:13:00 +00:00
R. Ryantm
79ce338fe0
hcloud: 1.66.0 -> 1.67.0
2026-07-24 15:40:37 +00:00
nixpkgs-ci[bot]
d5ac102f06
hcloud: 1.64.1 -> 1.66.0 ( #522754 )
2026-07-10 19:14:15 +00:00
Oleksii Filonenko
a84b6a24af
hcom: 0.7.22 -> 0.7.23
...
Diff: https://github.com/aannoo/hcom/compare/v0.7.22...v0.7.23
Changelog: https://github.com/aannoo/hcom/releases/tag/v0.7.23
2026-07-10 19:00:40 +01:00
Oleksii Filonenko
49d03e2409
hcom: fix checkPhase
2026-07-01 16:21:33 +01:00
Oleksii Filonenko
465400d1f1
hcom: init at 0.7.22
2026-07-01 14:58:25 +01:00
R. Ryantm
18c3d360c0
hcloud: 1.64.1 -> 1.66.0
2026-06-26 14:24:08 +00:00
R. Ryantm
5bcd2623a5
hcloud-upload-image: 1.4.0 -> 1.5.0
2026-06-21 20:10:41 +00:00
R. Ryantm
101034d25e
hck: 0.11.5 -> 0.11.6
2026-06-15 17:07:45 +00:00
Fabian Affolter
a9e2ef301c
hcxtools: modernize
2026-06-09 12:33:54 +02:00
R. Ryantm
d6853264e5
hcdiag: 0.5.12 -> 0.5.13
2026-06-05 02:51:21 +00:00
Fabian Affolter
12da5015b0
python3Packages.ida-hcli: init at 0.18.1
...
CLI for IDA plugin management and configuration
https://github.com/HexRaysSA/ida-hcli
2026-06-03 16:40:57 +02:00
R. Ryantm
fc60a293a7
hcloud-upload-image: 1.3.0 -> 1.4.0
2026-05-14 21:56:03 +00:00
R. Ryantm
0c847f5eff
hcledit: 0.2.17 -> 0.2.18
2026-05-05 20:22:36 +00:00
R. Ryantm
58e5f4db2a
hcloud: 1.62.2 -> 1.64.1
2026-05-02 11:57:21 +00:00
Paul Meyer
590ef4282d
hcl2json: 0.6.8 -> 0.6.9 ( #506631 )
2026-04-20 11:54:34 +00:00
R. Ryantm
ccedc7eefb
hcloud: 1.61.0 -> 1.62.2
2026-04-15 09:04:43 +00:00
R. Ryantm
278d3a6a57
hcdiag: 0.5.11 -> 0.5.12
2026-04-06 19:25:00 +00:00
R. Ryantm
8f83d1a8d7
hcl2json: 0.6.8 -> 0.6.9
2026-04-04 13:52:08 +00:00
Sandro
2dd0119570
hcloud-upload-image: init at 1.3.0 ( #482716 )
2026-03-01 04:06:47 +00:00
R. Ryantm
f6d2f0ed1c
hcdiag: 0.5.10 -> 0.5.11
2026-02-23 12:15:04 +00:00
Nick Cao
34a6f354a2
hcxdumptool: 7.1.0 -> 7.1.2 ( #488344 )
2026-02-09 23:30:24 +00:00
R. Ryantm
7e37be7903
hcxtools: 7.1.0 -> 7.1.2
2026-02-08 14:00:40 +00:00
R. Ryantm
2f46bd25ff
hcxdumptool: 7.1.0 -> 7.1.2
2026-02-08 13:59:24 +00:00
Fernando Rodrigues
693e12715a
various: switch buildGoModule packages to use finalAttrs ( #487704 )
2026-02-07 09:35:52 +00:00
quantenzitrone
d26a1a9e5e
various: switch buildRustPackage packages to use finalAttrs
...
this shouldn't create any rebuilds
the following script was used to generate this:
```fish
#!/usr/bin/env fish
# nix shell .#nixfmt nixpkgs#{nixf-diagnose,ripgrep,sd}
set base (git rev-parse HEAD)
set scope pkgs/by-name
set builder buildRustPackage
set files (rg --files-with-matches -F "$builder rec {" $scope | sort -u)
for file in $files
echo $file
sd -F "$builder rec {" "$builder (finalAttrs: {" $file
# version
sd -F 'version}' 'finalAttrs.version}' $file
sd -F '${version' '${finalAttrs.version' $file
sd -F '= version' '= finalAttrs.version' $file
sd -F 'inherit version;' 'inherit (finalAttrs) version;' $file
sd -F ' + version;' ' + finalAttrs.version;' $file
sd 'replaceStrings (.*) version' 'replaceStrings $1 finalAttrs.version' $file
sd -F 'splitVersion version' 'splitVersion finalAttrs.version' $file
sd -F 'versionAtLeast version' 'versionAtLeast finalAttrs.version' $file
sd 'versions\.([a-z]+) version' 'versions.$1 finalAttrs.version' $file
# src
sd -F 'src}' 'finalAttrs.src}' $file
sd -F '${src' '${finalAttrs.src' $file
sd -F '= src' '= finalAttrs.src' $file
sd -F 'inherit src;' 'inherit (finalAttrs) src;' $file
sd -F 'inherit (src' 'inherit (finalAttrs.src' $file
# meta
sd -F '${meta' '${finalAttrs.meta' $file
sd -F '= meta' '= finalAttrs.meta' $file
sd -F 'inherit (meta' 'inherit (finalAttrs.meta' $file
# other
sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
sd -F 'inherit src version;' 'inherit (finalAttrs) src version;' $file
sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
sd -F 'libPath}' 'finalAttrs.libPath}' $file
sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
sd -F 'nativeRuntimeInputs}' 'finalAttrs.nativeRuntimeInputs}' $file
sd -F '(!doCheck)' '(!finalAttrs.doCheck)' $file
sd -F 'optional doCheck' 'optional finalAttrs.doCheck' $file
sd -F 'optionals doCheck' 'optionals finalAttrs.doCheck' $file
sd -F '++ runtimeDependencies' '++ finalAttrs.runtimeDependencies' $file
# pname (restored afterwards)
sd -F 'pname}' 'finalAttrs.pname}' $file
sd -F '${pname' '${finalAttrs.pname' $file
sd -F '= pname' '= finalAttrs.pname' $file
# close finalAttrs lambda
echo ')' >>$file
# catch some errors early
if ! nixfmt $file
git restore $file
continue
end
if ! nixf-diagnose -i sema-primop-overridden $file
git restore $file
continue
end
end
set torestore (rg -F .finalAttrs --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
set torestore (rg -F finalAttrs.pname --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
# commit for faster eval times
git add pkgs
git commit --no-gpg-sign -m temp
set torestore
for file in $files
# file hasn't changed
if git diff --quiet $base $file
continue
end
# try to eval the package to definitely catch all errors
echo $file
set pname (string split / $file -f 4)
if ! nix eval .#$pname
set torestore $torestore $file
end
end
# restore files that don't eval
git reset --soft $base
git restore --staged .
if test (count $torestore) -gt 0
git restore $torestore
end
```
after that some manual cleanup was done:
- restoring files that cause changes in the number of lines
- restoring files that cause rebuilds
- restoring files that cause merge conflicts with staging
2026-02-07 09:53:17 +01:00
quantenzitrone
9380e05c3c
various: switch buildGoModule packages to use finalAttrs
...
this shouldn't create any rebuilds
the following script was used to generate this:
```fish
#!/usr/bin/env fish
# nix shell .#nixfmt nixpkgs#{nixf-diagnose,ripgrep,sd}
set base (git rev-parse HEAD)
set scope pkgs/by-name
set builder buildGoModule
set files (rg --files-with-matches -F "$builder rec {" $scope | sort -u)
for file in $files
echo $file
sd -F "$builder rec {" "$builder (finalAttrs: {" $file
# version
sd -F 'version}' 'finalAttrs.version}' $file
sd -F '${version' '${finalAttrs.version' $file
sd -F '= version' '= finalAttrs.version' $file
sd -F 'inherit version;' 'inherit (finalAttrs) version;' $file
sd -F ' + version;' ' + finalAttrs.version;' $file
sd 'replaceStrings (.*) version' 'replaceStrings $1 finalAttrs.version' $file
sd -F 'splitVersion version' 'splitVersion finalAttrs.version' $file
sd -F 'versionAtLeast version' 'versionAtLeast finalAttrs.version' $file
sd 'versions\.([a-z]+) version' 'versions.$1 finalAttrs.version' $file
# src
sd -F 'src}' 'finalAttrs.src}' $file
sd -F '${src' '${finalAttrs.src' $file
sd -F '= src' '= finalAttrs.src' $file
sd -F 'inherit src;' 'inherit (finalAttrs) src;' $file
sd -F 'inherit (src' 'inherit (finalAttrs.src' $file
# meta
sd -F '${meta' '${finalAttrs.meta' $file
sd -F '= meta' '= finalAttrs.meta' $file
sd -F 'inherit (meta' 'inherit (finalAttrs.meta' $file
# other
sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
sd -F 'inherit src version;' 'inherit (finalAttrs) src version;' $file
sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
sd -F 'libPath}' 'finalAttrs.libPath}' $file
sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
sd -F 'nativeRuntimeInputs}' 'finalAttrs.nativeRuntimeInputs}' $file
sd -F '(!doCheck)' '(!finalAttrs.doCheck)' $file
sd -F 'optional doCheck' 'optional finalAttrs.doCheck' $file
sd -F 'optionals doCheck' 'optionals finalAttrs.doCheck' $file
sd -F '++ runtimeDependencies' '++ finalAttrs.runtimeDependencies' $file
# pname (restored afterwards)
sd -F 'pname}' 'finalAttrs.pname}' $file
sd -F '${pname' '${finalAttrs.pname' $file
sd -F '= pname' '= finalAttrs.pname' $file
# close finalAttrs lambda
echo ')' >>$file
# catch some errors early
if ! nixfmt $file
git restore $file
continue
end
if ! nixf-diagnose -i sema-primop-overridden $file
git restore $file
continue
end
end
set torestore (rg -F .finalAttrs --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
set torestore (rg -F finalAttrs.pname --files-with-matches $scope)
if test (count $torestore) -gt 0
git restore $torestore
end
# commit for faster eval times
git add pkgs
git commit --no-gpg-sign -m temp
set torestore
for file in $files
# file hasn't changed
if git diff --quiet $base $file
continue
end
# try to eval the package to definitely catch all errors
echo $file
set pname (string split / $file -f 4)
if ! nix eval .#$pname
set torestore $torestore $file
end
end
# restore files that don't eval
git reset --soft $base
git restore --staged .
if test (count $torestore) -gt 0
git restore $torestore
end
```
after that some manual cleanup was done:
- restoring files that cause changes in the number of lines
- restoring files that cause rebuilds
- restoring files that cause merge conflicts with staging
2026-02-07 09:28:59 +01:00
Nick Cao
7e2fe26617
hcxtools: 7.0.1 -> 7.1.0 ( #485859 )
2026-02-02 22:12:49 +00:00
sshine
db79738455
hcloud-upload-image: init at 1.3.0
2026-02-01 23:30:16 +01:00
R. Ryantm
bea5d0c9a1
hcxtools: 7.0.1 -> 7.1.0
2026-02-01 07:22:07 +00:00
R. Ryantm
3514dcfed2
hcxdumptool: 7.0.1 -> 7.1.0
2026-02-01 07:21:35 +00:00
Fernando Rodrigues
6308c3b213
various: switch to finalAttrs pattern ( #483882 )
2026-01-30 02:32:49 +00:00
quantenzitrone
6b61249106
various: switch to finalAttrs pattern
...
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00
R. Ryantm
0e3f845a0e
hcloud: 1.60.0 -> 1.61.0
2026-01-23 20:07:49 +00:00
R. Ryantm
bd409fb1dd
hcloud: 1.59.0 -> 1.60.0
2026-01-16 20:07:56 +00:00
R. Ryantm
a73bc78082
hcloud: 1.58.0 -> 1.59.0
2026-01-05 20:01:57 +00:00
nixpkgs-ci[bot]
348a1c5c22
Merge master into staging-next
2025-12-26 00:18:14 +00:00
R. Ryantm
538b376e3c
hcdiag: 0.5.9 -> 0.5.10
2025-12-25 16:28:54 +00:00
nixpkgs-ci[bot]
b2b54d15ec
Merge master into staging-next
2025-12-19 00:18:50 +00:00
R. Ryantm
2cab18d426
hcloud: 1.57.0 -> 1.58.0
2025-12-18 19:56:28 +00:00
Wolfgang Walther
46c0c0eae7
Merge branch 'staging-next' into staging
2025-12-10 18:42:31 +01:00
Ihar Hrachyshka
567e8dfd8e
treewide: clean up 'meta = with' pattern
...
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.
Co-authored-by: Wolfgang Walther <walther@technowledgy.de >
2025-12-10 18:09:49 +01:00
K900
3fb88224bc
Merge remote-tracking branch 'origin/staging-next' into staging
2025-12-02 09:10:32 +03:00
R. Ryantm
9ccdd58480
hck: 0.11.4 -> 0.11.5
2025-12-01 20:18:53 +00:00
Philip Taron
feb4539536
versionCheckHook: Check for --version first ( #463218 )
2025-11-26 16:19:36 +00:00
R. Ryantm
2adfc081fc
hcp: 0.10.0 -> 0.11.0
2025-11-20 22:41:25 +00:00
Jonathan Davies
116036d574
treewide: Remove redundant versionCheckProgramArg = "--version"; with:
...
```shell
git grep -l -e 'versionCheckProgramArg = "--version";' -e 'versionCheckProgramArg = \[ "--version" \];' | while read f; do
sed -i '/versionCheckProgramArg/d' "$f"
sed -i '/^$/N;/\n$/D' "$f"
done
```
2025-11-20 10:39:02 +00:00
R. Ryantm
76662bd789
hcloud: 1.56.0 -> 1.57.0
2025-11-14 09:24:52 +00:00
R. Ryantm
cac9cac707
hcloud: 1.55.0 -> 1.56.0
2025-11-07 14:09:26 +00:00