R. Ryantm
c3d60be773
dcp: 0.25.9 -> 0.25.10
2026-08-02 03:20:46 +00:00
R. Ryantm
a8123e72b1
dcp: 0.25.5 -> 0.25.9
2026-07-24 02:08:39 +00:00
Gerhard Schwanzer
a6e06b6c68
dcmtk: patch CVE-2026-5663
...
Backport upstream commit edbb085e, which sanitizes values substituted into storescp execution hooks to prevent remote command injection.
Assisted-by: pi coding agent / Mika (OpenAI gpt-5.6-sol)
2026-07-19 21:03:25 +02:00
Jo and GitHub
134518cebe
treewide: avoid using singleton lists for licenses ( #535754 )
2026-07-15 18:25:37 +00:00
Eman Resu
ff094f60ad
treewide: replace more singleton license lists
2026-07-15 14:04:39 -04:00
R. Ryantm
a6db2ab41c
dcp: 0.25.2 -> 0.25.5
2026-07-15 00:05:53 +00:00
R. Ryantm
f0a5c3958a
dcp: 0.25.1 -> 0.25.2
2026-07-05 11:06:33 +00:00
Gaetan Lepage
3fecd68e9d
cudaPackages_13_3.cccl: init at 13.3.3.3.1
2026-06-21 16:56:43 +00:00
R. Ryantm
06f566e050
dcp: 0.25.0 -> 0.25.1
2026-06-18 19:32:51 +00:00
R. Ryantm
5504124f64
dcp: 0.24.3 -> 0.25.0
2026-06-09 08:44:12 +00:00
Peder Bergebakken Sundt and GitHub
f411420c80
dcrd: 1.8.1 -> 2.1.5 ( #520574 )
2026-05-29 00:09:33 +00:00
nixpkgs-ci[bot] and GitHub
02f8344bd1
dcv: 0.3.2 -> 0.4.0 ( #523904 )
2026-05-26 17:00:40 +00:00
Robert Schütz
a974c30115
dcmtk: 3.6.9 -> 3.7.0
...
Diff: https://github.com/DCMTK/dcmtk/compare/DCMTK-3.6.9...DCMTK-3.7.0
2026-05-25 15:34:32 -07:00
R. Ryantm
86a475d632
dcv: 0.3.2 -> 0.4.0
2026-05-25 06:48:50 +00:00
R. Ryantm
66656e87b4
dcp: 0.23.4 -> 0.24.3
2026-05-22 11:51:06 +00:00
Thomas Butter
5110704888
dcrd: 1.8.1 -> 2.1.5
2026-05-15 17:53:45 +00:00
R. Ryantm
336e9b113c
dcp: 0.23.2 -> 0.23.4
2026-05-05 15:18:00 +00:00
Sergei Trofimovich
03e96250de
dc3dd: fix for gcc-15
...
Without the chnage the build fails as https://hydra.nixos.org/build/326967790 :
```
In file included from argmatch.c:22:
argmatch.c: In function '__argmatch_die':
./config.h:8:22: error: too many arguments to function 'usage'; expected 0, have 1
8 | #define ARGMATCH_DIE usage (1)
| ^~~~~ ~
```
Work it around by falling back to pre-c23 standard.
2026-05-03 14:36:02 +01:00
R. Ryantm
3d17e25f2f
dcp: 0.23.0 -> 0.23.2
2026-04-27 06:32:35 +00:00
R. Ryantm
23b4647cf9
dcrwallet: 2.1.4 -> 2.1.5
2026-04-15 16:17:59 +00:00
Weijia Wang and GitHub
5550140fe6
dcnnt: use PEP517, modernize ( #486687 )
2026-04-13 20:54:16 +00:00
R. Ryantm
6fa596ebe3
dcp: 0.22.11 -> 0.23.0
2026-04-10 20:03:10 +00:00
R. Ryantm
868cd1e6dd
dcrwallet: 2.1.3 -> 2.1.4
2026-04-07 20:44:09 +00:00
R. Ryantm
6ec9372965
dcp: 0.22.9 -> 0.22.11
2026-04-02 18:06:26 +00:00
R. Ryantm
33fd533838
dcv: 0.3.1 -> 0.3.2
2026-03-26 07:01:46 +00:00
Guy Chronister
015b71d7b8
dcnnt: modernize derivation, switch to PEP517
2026-03-19 10:39:43 -05:00
R. Ryantm
c341836705
dcp: 0.22.8 -> 0.22.9
2026-03-15 20:28:49 +00:00
Marcos Benevides and qzylinra
546ba55624
dcp: init at 0.22.8
...
Co-authored-by: qzylinra <225773816+qzylinra@users.noreply.github.com >
2026-03-01 09:28:33 -04:00
quantenzitrone
be06328702
dcnnt: refactor and move to pkgs/by-name
...
this shouldn't create any rebuilds
2026-02-18 06:12:04 +01:00
Fernando Rodrigues and GitHub
693e12715a
various: switch buildGoModule packages to use finalAttrs ( #487704 )
2026-02-07 09:35:52 +00:00
quantenzitrone
626f23ce26
various: switch 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 files (rg --files-with-matches -F 'stdenv.mkDerivation rec {' $scope | sort -u)
for file in $files
echo $file
sd -F 'stdenv.mkDerivation rec {' 'stdenv.mkDerivation (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 '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:59:05 +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
Sigmanificient
220357fb2b
dcv: fix version
2026-02-01 21:54:53 +01:00
Michael Daniels and GitHub
046c69428f
dcgm: fix build with gcc15 ( #484663 )
2026-02-01 18:19:28 +00:00
Yohann Boniface and GitHub
c42f42b692
dcv: init at v0.3.1 ( #483145 )
2026-02-01 10:46:07 +00:00
Weijia Wang and GitHub
7784c63a27
dcrwallet: 2.0.6 -> 2.1.3 ( #467384 )
2026-01-31 21:28:24 +00:00
quantenzitrone
6b61249106
various: switch to finalAttrs pattern
...
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00
Rohit1 Singh
76ccfa0a97
dcgm: fix build with gcc15
2026-01-28 03:44:57 -05:00
Rohit1 Singh
6a3cc91491
dcgm: add sinrohit-desco as a maintainer
2026-01-28 02:30:59 -05:00
FelixLusseau
0706b85cf0
dcv: init at 0.3.1
2026-01-24 23:38:54 +01:00
Antonio and D3v
68fb787ba2
Remove maintainer from packages: d3vil0p3r
...
Removed maintainer from the package metadata.
2026-01-22 19:19:17 +01:00
Wolfgang Walther
6e85417bfe
teams/deshaw: drop
2026-01-18 15:28:17 +01:00
R. Ryantm
fba30296bb
dcrwallet: 2.0.6 -> 2.1.3
2026-01-04 02:12:24 +00:00
Ihar Hrachyshka and Wolfgang Walther
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
Wolfgang Walther
c0ec79be1d
maintainers: drop edwtjo
...
Reacted to 1 out of 384 maintainer pings in the least 180 days.
2025-12-09 21:09:02 +01:00
Jan Tojnar
d62659af20
dconf: 0.40.0 → 0.49.0
...
https://gitlab.gnome.org/GNOME/dconf/-/compare/0.40.0...0.49.0
Changelog-reviewed-by: Jan Tojnar <jtojnar@gmail.com >
2025-11-09 17:41:57 +01:00
Jan Tojnar
e811f1b8c0
dconf-editor: 49.rc → 49.0
...
https://gitlab.gnome.org/GNOME/dconf-editor/-/compare/49.rc...49.0
Changelog-Reviewed-By: Bobby Rong <rjl931189261@126.com >
2025-11-03 10:50:13 +01:00
Jan Tojnar and Bobby Rong
1dc9899c50
dconf-editor: 45.0.1 → 49.rc
...
https://gitlab.gnome.org/GNOME/dconf-editor/-/compare/45.0.1...49.rc
Changelog-Reviewed-By: Bobby Rong <rjl931189261@126.com >
Co-authored-by: Bobby Rong <rjl931189261@126.com >
2025-11-03 10:50:01 +01:00
Connor Baker
43c7b5e291
cudaPackages.cuda_cudart: provide a single output
...
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com >
2025-10-22 13:14:51 -07:00
Robert Schütz
07087c2893
dcm2niix: 1.0.20241211 -> 1.0.20250506
...
Diff: https://github.com/rordenlab/dcm2niix/compare/v1.0.20241211...v1.0.20250506
Changelog: https://github.com/rordenlab/dcm2niix/releases/tag/v1.0.20250506
2025-10-15 20:06:44 -07:00