Commit Graph

100 Commits

Author SHA1 Message Date
Nick Cao
13ff22e7ce hwinfo: 25.4 -> 25.5 (#552376) 2026-08-13 20:45:45 +00:00
R. Ryantm
651d5f040d hwinfo: 25.4 -> 25.5 2026-08-13 20:49:14 +02:00
R. Ryantm
02309509a5 hwdata: 0.409 -> 0.410 2026-08-02 01:50:36 +00:00
Sergei Trofimovich
59ae93215f hwdata: 0.408 -> 0.409
Changes: https://github.com/vcrhonek/hwdata/compare/v0.408...v0.409
2026-07-12 19:37:33 +01:00
Markus Kowalewski
f1a729ae6e hwloc: 2.13.0 -> 2.14.0 (#529721) 2026-06-09 07:38:23 +00:00
Michael Daniels
8197942b23 Merge branch 'staging-next' into staging 2026-06-08 22:01:24 -04:00
R. Ryantm
c1d0c1eaa6 hwloc: 2.13.0 -> 2.14.0 2026-06-09 00:57:07 +00:00
R. Ryantm
7a7b45990d hwinfo: 25.3 -> 25.4 2026-06-08 00:51:38 +00:00
nixpkgs-ci[bot]
b459bd3729 Merge staging-next into staging 2026-06-04 18:48:09 +00:00
Sergei Trofimovich
3cea6f05bd hwdata: 0.407 -> 0.408
Changes: https://github.com/vcrhonek/hwdata/compare/v0.407...v0.408
2026-06-03 21:26:39 +01:00
dotlambda
f008f109fc hwdata: 0.406 -> 0.407 (#516883) 2026-06-01 05:07:41 +00:00
R. Ryantm
99ea95bceb hwinfo: 25.2 -> 25.3 2026-05-21 06:14:05 +00:00
Angel J
c350a4185d hwatch: 0.3.19 -> 0.4.2 2026-05-15 19:19:47 -07:00
Angel J
65594df855 hwatch: cleanup 2026-05-15 19:19:22 -07:00
Angel J
d34f7eab24 hwatch: add iamanaws as maintainer 2026-05-15 19:07:22 -07:00
R. Ryantm
6bfe46da49 hwdata: 0.406 -> 0.407 2026-05-05 14:24:03 +00:00
Hythera
228e4d089d maintainers: remove hamburger1984 2026-05-05 14:43:15 +02:00
Masum Reza
7e2000dd3e hwdata: 0.405 -> 0.406 (#506009) 2026-04-02 16:27:02 +00:00
R. Ryantm
229793ae3a hwdata: 0.405 -> 0.406 2026-04-02 12:44:49 +00:00
Victor Engmark
c4f5dfad0d treewide: Remove continuation escape at end of commands
To avoid confusion and spurious newlines in the output.

Found by searching for a backslash followed by a newline, some
indentation, and then the end of multi-line string marker, using the
following extended regex:

```regex
\\\n +'';
```
2026-03-17 16:47:55 +01:00
Nick Cao
13cb179a5e hwdata: 0.404 -> 0.405 (#496145) 2026-03-03 23:06:46 +00:00
R. Ryantm
2055711b90 hwdata: 0.404 -> 0.405 2026-03-03 08:59:40 +00:00
Markus Kowalewski
10fa396b85 hwloc: 2.12.2 -> 2.13.0 (#488768) 2026-02-10 10:21:55 +00:00
R. Ryantm
480aae2cf1 hwloc: 2.12.2 -> 2.13.0 2026-02-09 15:40:25 +00:00
nixpkgs-ci[bot]
a4b9c6f754 Merge staging-next into staging 2026-02-07 12:08:23 +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
K900
3c4102eef4 Merge remote-tracking branch 'origin/staging-next' into staging 2026-02-06 15:58:23 +03:00
R. Ryantm
ea6b0147a0 hwdata: 0.403 -> 0.404 2026-02-06 10:28:35 +00:00
quantenzitrone
55280fa564 various: rename references from libX11 to libx11
this shouldn't create any rebuilds
2026-02-06 00:24:34 +01:00
R. Ryantm
71660b9052 hwinfo: 25.1 -> 25.2 2026-02-04 13:24:05 +00:00
R. Ryantm
badcb1cc6c hwinfo: 25.0 -> 25.1 2026-01-28 10:22:13 +00:00
R. Ryantm
06fe45782b hwdata: 0.402 -> 0.403 2026-01-05 13:55:51 +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
John Ericson
1728eb836e libblake3: fix cygwin build (#468273) 2025-12-09 21:37:51 +00:00
David McFarland
42074aa75e hwloc: mark broken on cygwin 2025-12-09 10:20:50 -04:00
R. Ryantm
5ef2969e55 hwdata: 0.401 -> 0.402 2025-12-02 13:58:28 +00:00
R. Ryantm
c877793c94 hwdata: 0.400 -> 0.401 2025-11-05 15:57:30 +00:00
Jörg Thalheim
6cfde653a0 hwinfo: 23.5 -> 25.0 (#454283) 2025-11-04 18:18:55 +00:00
Bob van der Linden
260935802a hwinfo: 23.5 -> 25.0
This upgrades hwinfo from 23.5 to 25.0. This includes a change to
Makefile which introduces INSTALL_PREFIX, which defaults to /usr.
Instead of replacing /usr we can now use an empty INSTALL_PREFIX.
2025-11-04 19:00:42 +01:00
Sergei Trofimovich
d856e74723 hwdata: 0.398 -> 0.400
Changes: https://github.com/vcrhonek/hwdata/compare/v0.399...v0.400
2025-10-05 08:58:44 +05:30
R. Ryantm
05f2232646 hwdata: 0.398 -> 0.399 2025-09-02 14:49:21 +05:30
R. Ryantm
373f04d7bd hwloc: 2.12.1 -> 2.12.2 2025-08-27 12:56:53 +00:00
nixpkgs-ci[bot]
1ea7f876d1 Merge master into staging-next 2025-08-21 18:05:34 +00:00
jopejoe1
3d0d1d3790 hwloc: switch from fetchurl to fetchFromGitHub 2025-08-20 22:37:12 +02:00
R. Ryantm
48f71e5e09 hwdata: 0.397 -> 0.398 2025-08-04 13:51:05 +00:00
TomaSajt
398b16e16c treewide: remove useFetchCargoVendor usages 2025-07-26 11:39:35 +02:00
Wolfgang Walther
5a0711127c treewide: run nixfmt 1.0.0 2025-07-24 13:55:40 +02:00
R. Ryantm
65c9b283f3 hwdata: 0.396 -> 0.397 2025-07-02 13:15:19 +05:30
Sergei Trofimovich
035c4c42ec hwdata: 0.395 -> 0.396
Changes: https://github.com/vcrhonek/hwdata/compare/v0.395...v0.396
2025-06-08 10:59:18 +05:30