From bea399e226f856d057f931fa0d89566aa303c652 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 31 Jan 2022 12:36:42 -0600 Subject: [PATCH] numatop: fix platforms, enumerate explicitly Not sure why the previous approach no longer works, but we at least want x86_64-linux supported! Include the triples (doubles) currently supported for ppc linux. --- pkgs/os-specific/linux/numatop/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/numatop/default.nix b/pkgs/os-specific/linux/numatop/default.nix index ba972bb6916a..8191439dedfd 100644 --- a/pkgs/os-specific/linux/numatop/default.nix +++ b/pkgs/os-specific/linux/numatop/default.nix @@ -20,8 +20,8 @@ stdenv.mkDerivation rec { license = licenses.bsd3; maintainers = with maintainers; [ dtzWill ]; platforms = [ - { kernel.name = "linux"; cpu.family = "x86"; } - { kernel.name = "linux"; cpu.family = "power"; } + "i686-linux" "x86_64-linux" + "powerpc64-linux" "powerpc64le-linux" ]; }; }