Commit Graph

79 Commits

Author SHA1 Message Date
R. Ryantm
3eed4d9da6 gqlgen: 0.17.93 -> 0.17.94 2026-07-09 21:04:19 +00:00
2kybe3
3d589588ff treewide: follow some GitHub redirects for fetchFromGitHub
generated using https://git.kybe.xyz/2kybe3/nixpkgs-github-redirect

continuation of: #538419
2026-07-05 10:07:48 +02:00
R. Ryantm
85ea503ea7 gqlgen: 0.17.91 -> 0.17.93 2026-06-29 06:48:27 +00:00
R. Ryantm
7644203065 gqlgen: 0.17.90 -> 0.17.91 2026-06-11 20:28:58 +00:00
Petr Portnov
03db4d5c52 gql: add nix-update-script 2026-05-07 15:05:29 +03:00
Petr Portnov
ea3b5091ea gql: add progrm_jarvis to maintainers 2026-05-07 15:00:45 +03:00
R. Ryantm
43ea0c9a5a gqlgen: 0.17.89 -> 0.17.90 2026-04-25 19:54:07 +00:00
R. Ryantm
931f7bd761 gqlgen: 0.17.88 -> 0.17.89 2026-03-24 20:05:04 +00:00
R. Ryantm
86619b81fa gql: 0.42.0 -> 0.43.0 2026-03-09 20:07:05 +00:00
R. Ryantm
663eec8e0c gqlgen: 0.17.87 -> 0.17.88 2026-03-09 02:13:26 +00:00
R. Ryantm
65c8aca684 gqlgen: 0.17.86 -> 0.17.87 2026-02-19 22:04:46 +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
Yohann Boniface
75ed6e73af gqlgen: Fix Package Description (#479286) 2026-01-12 22:57:21 +00:00
Sebastian Kowalak
bb2c7e15f5 gqlgen: refactor
The description of the package did not adhere to the nixpkgs
contribution guideline for meta attributes.
2026-01-12 10:14:06 +01:00
R. Ryantm
1a9def28db gqlgen: 0.17.85 -> 0.17.86 2026-01-12 07:15:24 +00:00
R. Ryantm
a0760294d4 gqlgen: 0.17.84 -> 0.17.85 2025-12-17 04:08:47 +00: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
R. Ryantm
d137454c27 gqlgen: 0.17.83 -> 0.17.84 2025-11-24 20:04:27 +00:00
Paul Meyer
c5f0706cf4 gqlgen: 0.17.81 -> 0.17.83 (#459390) 2025-11-19 19:59:17 +00:00
R. Ryantm
674b6962bd gql: 0.41.0 -> 0.42.0 2025-11-16 15:32:15 +00:00
R. Ryantm
f356821ef8 gqlgen: 0.17.81 -> 0.17.83 2025-11-13 23:48:12 +00:00
Michael Daniels
30420dabad treewide: drop figsoda as maintainer (part 2)
s/maintainers = with maintainers; [ figsoda ];/maintainers = with maintainers; [ ];/
2025-11-02 20:16:11 -05:00
R. Ryantm
30786ff613 gql: 0.40.0 -> 0.41.0 2025-10-05 13:55:03 +00:00
R. Ryantm
53f63d016b gqlgen: 0.17.79 -> 0.17.81 2025-09-26 04:40:37 +00:00
R. Ryantm
c352933c9c gqlgen: 0.17.78 -> 0.17.79 2025-09-14 19:53:13 +00:00
Nick Cao
7ff3c1fb8c gqlgen: 0.17.77 -> 0.17.78 (#431053) 2025-08-05 16:16:00 -04:00
R. Ryantm
96c77e6f72 gqlgen: 0.17.77 -> 0.17.78 2025-08-04 23:15:05 +00:00
R. Ryantm
e3cb5cf465 gql: 0.39.0 -> 0.40.0 2025-08-03 15:45:44 +00:00
R. Ryantm
690f9f9b03 gqlgen: 0.17.76 -> 0.17.77 2025-07-27 04:37:57 +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
24d85aedb5 gqlgen: 0.17.75 -> 0.17.76 2025-07-09 02:17:12 +00:00
awwpotato
d103e67626 qgrx: remove with lib 2025-06-26 12:00:10 -07:00
awwpotato
a10bca57bb gqrx: move to by-name 2025-06-26 12:00:10 -07:00
Sizhe Zhao
e6e69118f7 gqlgenc: use patch from upstream 2025-06-18 17:12:04 +08:00
Nick Cao
226c50f38d gqlgen: 0.17.74 -> 0.17.75 (#417343) 2025-06-17 19:07:06 -04:00
R. Ryantm
1127e63bff gqlgen: 0.17.74 -> 0.17.75 2025-06-16 20:06:30 +00:00
R. Ryantm
77e7c3dc94 gql: 0.38.0 -> 0.39.0 2025-06-16 17:20:24 +00:00
R. Ryantm
070a7700a6 gqlgen: 0.17.73 -> 0.17.74 2025-06-03 02:25:05 +00:00
Sizhe Zhao
79a6b7912b gqlgenc: avoid with lib; 2025-05-19 15:56:26 +08:00
Sizhe Zhao
c86c553edd gqlgenc: use finalAttrs 2025-05-19 15:55:51 +08:00
Sizhe Zhao
df06134e63 gqlgenc: add versionCheckHook 2025-05-19 15:50:15 +08:00
R. Ryantm
8652a78538 gqlgen: 0.17.71 -> 0.17.73 2025-05-14 03:53:30 +00:00
R. Ryantm
5dd490844f gqlgenc: 0.32.0 -> 0.32.1 2025-05-01 07:13:24 +00:00
Weijia Wang
8b8f68da77 gqlgen: 0.17.70 -> 0.17.71 (#399646) 2025-04-26 23:52:37 +02:00
R. Ryantm
6c9370358f gql: 0.37.0 -> 0.38.0 2025-04-20 19:41:35 +00:00
R. Ryantm
a6423220de gqlgen: 0.17.70 -> 0.17.71 2025-04-18 04:21:19 +00:00
R. Ryantm
8bc8c98d1f gqlgenc: 0.31.0 -> 0.32.0 2025-04-15 13:54:38 +00:00