From df5830d01308ba2e9801009d9df1c01a6f3d9a6c Mon Sep 17 00:00:00 2001 From: Rahul Rameshbabu Date: Mon, 18 Nov 2024 23:52:42 -0800 Subject: [PATCH] gpauth: limit platforms to *-linux Since gpauth depends on webkitgtk, it cannot be trivially built on the darwin platform. Even though webkitgtk is explicitly marked as broken for darwin, this does not help with showing what platforms gpauth (and gpclient) is supported on when doing package searching. Signed-off-by: Rahul Rameshbabu --- pkgs/by-name/gp/gpauth/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/gp/gpauth/package.nix b/pkgs/by-name/gp/gpauth/package.nix index 102cfe3ddf58..a98459bbc0d1 100644 --- a/pkgs/by-name/gp/gpauth/package.nix +++ b/pkgs/by-name/gp/gpauth/package.nix @@ -49,5 +49,9 @@ rustPlatform.buildRustPackage rec { binary-eater m1dugh ]; + platforms = [ + "aarch64-linux" + "x86_64-linux" + ]; }; }