From 84738adc81b5a4ac343d12132409c1d88e41aa5f Mon Sep 17 00:00:00 2001 From: George Huebner Date: Wed, 18 Feb 2026 00:51:10 -0600 Subject: [PATCH] nixseparatedebuginfod2: broaden meta.platforms from linux to unix --- pkgs/by-name/ni/nixseparatedebuginfod2/package.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ni/nixseparatedebuginfod2/package.nix b/pkgs/by-name/ni/nixseparatedebuginfod2/package.nix index 1b1eae121523..ef8992be225e 100644 --- a/pkgs/by-name/ni/nixseparatedebuginfod2/package.nix +++ b/pkgs/by-name/ni/nixseparatedebuginfod2/package.nix @@ -1,4 +1,5 @@ { + stdenv, lib, fetchFromGitHub, rustPlatform, @@ -31,6 +32,7 @@ rustPlatform.buildRustPackage (finalAttrs: { nativeBuildInputs = [ pkg-config ]; + doCheck = stdenv.hostPlatform.isLinux; nativeCheckInputs = [ bubblewrap elfutils @@ -48,8 +50,11 @@ rustPlatform.buildRustPackage (finalAttrs: { description = "Downloads and provides debug symbols and source code for nix derivations to gdb and other debuginfod-capable debuggers as needed"; homepage = "https://github.com/symphorien/nixseparatedebuginfod2"; license = lib.licenses.gpl3Only; - maintainers = [ lib.maintainers.symphorien ]; - platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ + symphorien + feyorsh + ]; + platforms = lib.platforms.unix; mainProgram = "nixseparatedebuginfod2"; }; })