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.

+2 -2
+2 -2
pkgs/os-specific/linux/numatop/default.nix
··· 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ dtzWill ]; 22 platforms = [ 23 - { kernel.name = "linux"; cpu.family = "x86"; } 24 - { kernel.name = "linux"; cpu.family = "power"; } 25 ]; 26 }; 27 }
··· 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ dtzWill ]; 22 platforms = [ 23 + "i686-linux" "x86_64-linux" 24 + "powerpc64-linux" "powerpc64le-linux" 25 ]; 26 }; 27 }