From 1ba0f989615c0d2d6d18a7bffbf2ecacb536a413 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Sun, 10 May 2026 16:22:19 -0400 Subject: [PATCH 1/4] nixpkgs-vet: rm unused argument --- pkgs/by-name/ni/nixpkgs-vet/package.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/by-name/ni/nixpkgs-vet/package.nix b/pkgs/by-name/ni/nixpkgs-vet/package.nix index 290ce53852e9..a764d2e627c7 100644 --- a/pkgs/by-name/ni/nixpkgs-vet/package.nix +++ b/pkgs/by-name/ni/nixpkgs-vet/package.nix @@ -1,7 +1,6 @@ { fetchFromGitHub, lib, - nix, nix-update-script, rustPlatform, }: From eb59c2553d68f69fc5e1d51efef333d239dfbc98 Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Sun, 10 May 2026 16:43:32 -0400 Subject: [PATCH 2/4] eslint: convert to finalAttrs pattern --- pkgs/by-name/es/eslint/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/es/eslint/package.nix b/pkgs/by-name/es/eslint/package.nix index 9126aa0a18c1..e198c22f842a 100644 --- a/pkgs/by-name/es/eslint/package.nix +++ b/pkgs/by-name/es/eslint/package.nix @@ -4,14 +4,14 @@ fetchFromGitHub, nix-update-script, }: -buildNpmPackage rec { +buildNpmPackage (finalAttrs: { pname = "eslint"; version = "10.3.0"; src = fetchFromGitHub { owner = "eslint"; repo = "eslint"; - tag = "v${version}"; + tag = "v${finalAttrs.version}"; hash = "sha256-b0Gv7soMPTsbMOZLqMe5vMCPwInk9AFusepf2jJH/Ng="; }; @@ -35,7 +35,7 @@ buildNpmPackage rec { }; meta = { - changelog = "https://github.com/eslint/eslint/blob/${src.tag}/CHANGELOG.md"; + changelog = "https://github.com/eslint/eslint/blob/${finalAttrs.src.rev}/CHANGELOG.md"; description = "Find and fix problems in your JavaScript code"; homepage = "https://eslint.org"; license = lib.licenses.mit; @@ -44,4 +44,4 @@ buildNpmPackage rec { onny ]; }; -} +}) From 6e8af4c7a93295dbe52660fa809c5ce417858f5b Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Sun, 10 May 2026 16:48:06 -0400 Subject: [PATCH 3/4] procps: rm unused argument --- pkgs/os-specific/linux/procps-ng/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/os-specific/linux/procps-ng/default.nix b/pkgs/os-specific/linux/procps-ng/default.nix index 921107506fb9..ecd877096f93 100644 --- a/pkgs/os-specific/linux/procps-ng/default.nix +++ b/pkgs/os-specific/linux/procps-ng/default.nix @@ -1,7 +1,6 @@ { lib, stdenv, - fetchpatch2, fetchurl, ncurses, pkg-config, From 1f0ada01dcaca253094cf7a3caf99ae806f6488e Mon Sep 17 00:00:00 2001 From: Michael Daniels Date: Sun, 10 May 2026 16:49:28 -0400 Subject: [PATCH 4/4] gnupatch: rm unused argument --- pkgs/tools/text/gnupatch/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/tools/text/gnupatch/default.nix b/pkgs/tools/text/gnupatch/default.nix index ddb0914dbe84..99a801c4cc8e 100644 --- a/pkgs/tools/text/gnupatch/default.nix +++ b/pkgs/tools/text/gnupatch/default.nix @@ -4,7 +4,6 @@ fetchurl, ed, autoreconfHook, - testers, }: stdenv.mkDerivation (finalAttrs: { @@ -27,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: { "ac_cv_func_strnlen_working=yes" ]; - doCheck = stdenv.hostPlatform.libc != "musl"; # not cross; + doCheck = stdenv.hostPlatform.libc != "musl"; nativeCheckInputs = [ ed ]; meta = {