summary refs log tree commit diff
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2022-01-31 12:36:42 -0600
committerWill Dietz <w@wdtz.org>2022-01-31 12:36:42 -0600
commitbea399e226f856d057f931fa0d89566aa303c652 (patch)
tree1dbe59a93e8ca5478a92cbd7d370cb0395d7ef0e
parenta529f0c125a78343b145a8eb2b915b0295e4f459 (diff)
downloadnixpkgs-bea399e226f856d057f931fa0d89566aa303c652.tar
nixpkgs-bea399e226f856d057f931fa0d89566aa303c652.tar.gz
nixpkgs-bea399e226f856d057f931fa0d89566aa303c652.tar.bz2
nixpkgs-bea399e226f856d057f931fa0d89566aa303c652.tar.lz
nixpkgs-bea399e226f856d057f931fa0d89566aa303c652.tar.xz
nixpkgs-bea399e226f856d057f931fa0d89566aa303c652.tar.zst
nixpkgs-bea399e226f856d057f931fa0d89566aa303c652.zip
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.
-rw-r--r--pkgs/os-specific/linux/numatop/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/numatop/default.nix b/pkgs/os-specific/linux/numatop/default.nix
index ba972bb6916..8191439dedf 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"
     ];
   };
 }