summary refs log tree commit diff
path: root/pkgs/os-specific/linux/numatop
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-04-15 08:01:36 -0500
committerWill Dietz <w@wdtz.org>2019-04-15 08:05:17 -0500
commit49ed37b4f31e407804efe06a6d43bd1f9bcb8b85 (patch)
treede8872ce7397a5ca3e50ca4f374206214590db75 /pkgs/os-specific/linux/numatop
parent50fc2e7382ce8ff21a65a44806680d9ef3a2ac97 (diff)
downloadnixpkgs-49ed37b4f31e407804efe06a6d43bd1f9bcb8b85.tar
nixpkgs-49ed37b4f31e407804efe06a6d43bd1f9bcb8b85.tar.gz
nixpkgs-49ed37b4f31e407804efe06a6d43bd1f9bcb8b85.tar.bz2
nixpkgs-49ed37b4f31e407804efe06a6d43bd1f9bcb8b85.tar.lz
nixpkgs-49ed37b4f31e407804efe06a6d43bd1f9bcb8b85.tar.xz
nixpkgs-49ed37b4f31e407804efe06a6d43bd1f9bcb8b85.tar.zst
nixpkgs-49ed37b4f31e407804efe06a6d43bd1f9bcb8b85.zip
numatop: platforms
Diffstat (limited to 'pkgs/os-specific/linux/numatop')
-rw-r--r--pkgs/os-specific/linux/numatop/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/numatop/default.nix b/pkgs/os-specific/linux/numatop/default.nix
index c41510f4f88..80f14b568ed 100644
--- a/pkgs/os-specific/linux/numatop/default.nix
+++ b/pkgs/os-specific/linux/numatop/default.nix
@@ -19,6 +19,9 @@ stdenv.mkDerivation rec {
     homepage = https://01.org/numatop;
     license = licenses.bsd3;
     maintainers = with maintainers; [ dtzWill ];
-    platforms = stdenv.lib.platforms.all;
+    platforms = [
+      { kernel.name = "linux"; cpu.family = "x86"; }
+      { kernel.name = "linux"; cpu.family = "power"; }
+    ];
   };
 }