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.
This commit is contained in:
Will Dietz 2022-01-31 12:36:42 -06:00
parent a529f0c125
commit bea399e226

View file

@ -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"
];
};
}