Commit Graph

142 Commits

Author SHA1 Message Date
Weijia Wang
17ba7fdb5f nbfc-linux: 0.5.2 -> 0.5.3 (#511083) 2026-08-16 11:13:22 +00:00
Weijia Wang
fd6d343fc0 nbstripout: 0.8.2 -> 0.9.1 (#481529) 2026-08-15 16:16:19 +00:00
Weijia Wang
efd0d917b4 nbdkit: 1.44.1 -> 1.48.0 (#473968) 2026-08-15 14:34:14 +00:00
R. Ryantm
ba47111a6a nbfc-linux: 0.5.2 -> 0.5.3 2026-08-10 12:55:59 +00:00
Pavol Rusnak
288f23c712 nbxplorer: 2.6.0 -> 2.6.10 2026-08-07 18:20:22 +02:00
R. Ryantm
142ebddd80 nbdkit: 1.44.1 -> 1.48.0 2026-07-20 17:18:34 +00:00
Eman Resu
ff094f60ad treewide: replace more singleton license lists 2026-07-15 14:04:39 -04:00
Peder Bergebakken Sundt
5bceaefe6c nbfc-linux: 0.3.19 -> 0.5.2 (#533449) 2026-07-10 17:25:50 +00:00
2kybe3
f2fe0085c4 treewide: follow some GitHub redirects for fetchFromGitHub
generated using https://git.kybe.xyz/2kybe3/nixpkgs-github-redirect

continuation of: #538598
2026-07-06 16:46:50 +02:00
R. Ryantm
4cb2e00fc4 nbping: 0.7.0 -> 0.7.1 2026-06-28 13:36:15 +00:00
anubis
e9f75bfda0 nbfc-linux: 0.3.19 -> 0.5.2 2026-06-20 22:26:30 +01:00
Clément
35c045f7e0 nbxplorer: update source to resolve redirection 2026-06-01 01:32:49 +02:00
R. Ryantm
1ae2bf8dd2 nbping: 0.6.1 -> 0.7.0 2026-05-20 18:39:32 +00:00
toonn
eac199657d nb: 7.25.3 -> 7.25.4 (#515721) 2026-05-08 22:29:41 +00:00
Peder Bergebakken Sundt
d0a404cbcd nbench: fix build with gcc15 (#516297) 2026-05-08 17:49:29 +00:00
Xiangyan Sun
30ef665347 nbench: fix build with gcc15 2026-05-03 18:23:57 -07:00
Nick Cao
be431d2db0 nbd: 3.25 -> 3.27.1 2026-05-02 08:45:24 -04:00
R. Ryantm
bb9a28b2ba nb: 7.25.3 -> 7.25.4 2026-05-02 03:09:43 +00:00
R. Ryantm
b27818dd08 nb-cli: 1.7.3 -> 1.7.4 2026-04-27 21:05:54 +00:00
Antoine du Hamel
b9df05e435 nbytes: 0.1.3 -> 0.1.4 2026-04-09 09:56:45 +02:00
Moraxyc
1065d9a860 nb-cli: 1.6.0 -> 1.7.3 2026-04-03 14:04:56 +08:00
toonn
24a67348c7 nb: 7.25.2 -> 7.25.3 (#501532) 2026-03-25 11:54:37 +00:00
Lisanna Dettwyler
8eea46dd18 nbench: use https for sources
Signed-off-by: Lisanna Dettwyler <lisanna.dettwyler@gmail.com>
2026-03-21 12:31:02 -04:00
R. Ryantm
c71f8eca8d nb: 7.25.2 -> 7.25.3 2026-03-20 06:03:53 +00:00
Sizhe Zhao
b509d6df99 nb: 7.25.0 -> 7.25.2 2026-03-01 18:31:05 +08:00
Sandro
7c86c8b589 nbted: init at 1.5.2-unstable-2026-02-27 (#494845) 2026-03-01 00:33:52 +00:00
jaredmontoya
b44428ffce nbted: init at 1.5.2-unstable-2026-02-27 2026-02-27 16:35:16 +01:00
R. Ryantm
b51d077e0b nb: 7.24.1 -> 7.25.0 2026-02-23 21:42:16 +00:00
R. Ryantm
10de7651e9 nbstripout: 0.8.2 -> 0.9.1 2026-02-23 14:26:22 +00:00
Antoine du Hamel
6f4637bffa nbytes: 0.1.2 -> 0.1.3 2026-02-18 23:44:34 +01:00
Nick Cao
5ea8749e46 nb: 7.24.0 -> 7.24.1 (#488616) 2026-02-09 23:40:34 +00:00
Sandro
a32f49d184 nbping: init at 0.6.1 (#369929) 2026-02-09 18:19:57 +00:00
R. Ryantm
1ab8586554 nb: 7.24.0 -> 7.24.1 2026-02-09 06:27:42 +00:00
Fernando Rodrigues
a242c54745 various: switch buildPythonApplication packages to use finalAttrs (#487735) 2026-02-07 09:30:09 +00:00
quantenzitrone
18dc8a95fb various: switch buildPythonApplication 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 buildPythonApplication

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
    # pname (restored afterwards)
    sd -F 'pname}' 'finalAttrs.pname}' $file
    sd -F '${pname' '${finalAttrs.pname' $file
    sd -F '= pname' '= finalAttrs.pname' $file
    # combinations
    sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
    sd -F 'inherit src version;' 'inherit (finalAttrs) src version;' $file
    sd -F 'inherit version pname;' 'inherit (finalAttrs) version pname;' $file
    sd -F 'inherit pname version;' 'inherit (finalAttrs) pname version;' $file
    sd -F 'inherit pname src version;' 'inherit (finalAttrs) pname src version;' $file
    sd -F 'inherit pname version src;' 'inherit (finalAttrs) pname version src;' $file
    sd -F 'inherit src pname version;' 'inherit (finalAttrs) src pname version;' $file
    sd -F 'inherit src version pname;' 'inherit (finalAttrs) src version pname;' $file
    sd -F 'inherit version pname src;' 'inherit (finalAttrs) version pname src;' $file
    sd -F 'inherit version src pname;' 'inherit (finalAttrs) version src pname;' $file
    # other
    sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
    sd -F 'nativeBuildInputs}' 'finalAttrs.nativeBuildInputs}' $file
    sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
    sd -F 'propagatedBuildInputs}' 'finalAttrs.propagatedBuildInputs}' $file
    sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
    sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
    sd -F 'makePythonPath dependencies' 'makePythonPath finalAttrs.dependencies' $file
    sd -F 'makePythonPath propagatedBuildInputs' 'makePythonPath finalAttrs.propagatedBuildInputs' $file
    sd -F 'libPath}' 'finalAttrs.libPath}' $file
    sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
    sd -F 'runtimeDeps}' 'finalAttrs.runtimeDeps}' $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
    # 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 10:06:06 +01: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
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
Antoine du Hamel
7f7a5d664d nbytes: build shared libs 2026-01-27 00:31:51 +01:00
luftmensch-luftmensch
2e0ff149e7 nbping: init at 0.6.1 2026-01-25 11:14:10 +01:00
Antonio
68fb787ba2 Remove maintainer from packages: d3vil0p3r
Removed maintainer from the package metadata.
2026-01-22 19:19:17 +01:00
R. Ryantm
c20c620dea nb: 7.23.2 -> 7.24.0 2026-01-19 09:14:25 +00:00
Gaël James
702acfa0b5 treewide: git tags: remove unnecessary string interpolation 2026-01-15 18:27:43 +01:00
Antoine du Hamel
b5efea456f nbytes: init at 0.1.2 2026-01-06 17:27:39 +01:00
Erik Arvstedt
2895fbe2b8 nbxplorer: 2.5.30-1 -> 2.6.0 2026-01-04 15:32:31 +01:00
K900
b715e74ab2 Merge remote-tracking branch 'origin/master' into staging-next 2025-12-22 21:42:30 +03:00
Moraxyc
18e7ab4e05 nb-cli: add missing dependency 2025-12-22 23:17:41 +08:00
R. Ryantm
8269c93a32 nb-cli: 1.5.0 -> 1.6.0 2025-12-22 14:51:56 +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