summary refs log tree commit diff
diff options
context:
space:
mode:
authorfortuneteller2k <lythe1107@gmail.com>2021-06-06 14:31:18 +0800
committerfortuneteller2k <lythe1107@gmail.com>2021-06-06 14:31:18 +0800
commit4beede5bf0bdea917b6a78fd5af18f9f76983c33 (patch)
treeba0225d8d3cbeb6c4fff8009800438e58bbc1e26
parent4a34590eced7ec7aadf4a64105d7a88125919738 (diff)
downloadnixpkgs-4beede5bf0bdea917b6a78fd5af18f9f76983c33.tar
nixpkgs-4beede5bf0bdea917b6a78fd5af18f9f76983c33.tar.gz
nixpkgs-4beede5bf0bdea917b6a78fd5af18f9f76983c33.tar.bz2
nixpkgs-4beede5bf0bdea917b6a78fd5af18f9f76983c33.tar.lz
nixpkgs-4beede5bf0bdea917b6a78fd5af18f9f76983c33.tar.xz
nixpkgs-4beede5bf0bdea917b6a78fd5af18f9f76983c33.tar.zst
nixpkgs-4beede5bf0bdea917b6a78fd5af18f9f76983c33.zip
cpufrequtils: set platform to x86_64-linux
-rw-r--r--pkgs/os-specific/linux/cpufrequtils/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/cpufrequtils/default.nix b/pkgs/os-specific/linux/cpufrequtils/default.nix
index d099a62bc81..6f94d0f8925 100644
--- a/pkgs/os-specific/linux/cpufrequtils/default.nix
+++ b/pkgs/os-specific/linux/cpufrequtils/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Tools to display or change the CPU governor settings";
     homepage = "http://ftp.be.debian.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html";
-    license = licenses.gpl2;
-    platforms = platforms.linux;
+    license = licenses.gpl2Only;
+    platforms = [ "x86_64-linux" ];
   };
 }