summary refs log tree commit diff
path: root/pkgs/os-specific/linux/cpuid
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-11-06 17:45:44 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-11-06 17:45:44 +0100
commit87d250e6554161db681fef23ff92cbe5879b0092 (patch)
tree48d615d3befc1cf60f8efaf48ba06c3bd53d66dd /pkgs/os-specific/linux/cpuid
parent9d7df9dcc33a497e840062bb989962d5135d7aa5 (diff)
downloadnixpkgs-87d250e6554161db681fef23ff92cbe5879b0092.tar
nixpkgs-87d250e6554161db681fef23ff92cbe5879b0092.tar.gz
nixpkgs-87d250e6554161db681fef23ff92cbe5879b0092.tar.bz2
nixpkgs-87d250e6554161db681fef23ff92cbe5879b0092.tar.lz
nixpkgs-87d250e6554161db681fef23ff92cbe5879b0092.tar.xz
nixpkgs-87d250e6554161db681fef23ff92cbe5879b0092.tar.zst
nixpkgs-87d250e6554161db681fef23ff92cbe5879b0092.zip
cpuid: 20201006 -> 20211031
Diffstat (limited to 'pkgs/os-specific/linux/cpuid')
-rw-r--r--pkgs/os-specific/linux/cpuid/default.nix26
1 files changed, 16 insertions, 10 deletions
diff --git a/pkgs/os-specific/linux/cpuid/default.nix b/pkgs/os-specific/linux/cpuid/default.nix
index ea9ae06130e..a434501d512 100644
--- a/pkgs/os-specific/linux/cpuid/default.nix
+++ b/pkgs/os-specific/linux/cpuid/default.nix
@@ -1,20 +1,27 @@
-{ lib, stdenv, fetchurl, perl }:
+{ lib
+, stdenv
+, fetchurl
+, perl
+}:
 
 stdenv.mkDerivation rec {
   pname = "cpuid";
-  version = "20201006";
+  version = "20211031";
 
   src = fetchurl {
-    name = "${pname}-${version}.src.tar.gz";
     url = "http://etallen.com/cpuid/${pname}-${version}.src.tar.gz";
-    sha256 = "19jnkh57f979b78ak5mpxmdvnkgc33r55cw9shgd2hc380b3zi8k";
+    sha256 = "13sxb2ar4gypiv0l87lr7hf3qjccwgsg1r92adv9jvrfxcv36pbn";
   };
 
   # For pod2man during the build process.
-  nativeBuildInputs = [ perl ];
+  nativeBuildInputs = [
+    perl
+  ];
 
   # As runtime dependency for cpuinfo2cpuid.
-  buildInputs = [ perl ];
+  buildInputs = [
+    perl
+  ];
 
   # The Makefile hardcodes $(BUILDROOT)/usr as installation
   # destination. Just nuke all mentions of /usr to get the right
@@ -32,7 +39,7 @@ stdenv.mkDerivation rec {
     fi
   '';
 
-  meta = {
+  meta = with lib; {
     description = "Linux tool to dump x86 CPUID information about the CPU";
     longDescription = ''
       cpuid dumps detailed information about the CPU(s) gathered from the CPUID
@@ -40,11 +47,10 @@ stdenv.mkDerivation rec {
       Intel, AMD, VIA, Hygon, and Zhaoxin CPUs, as well as older Transmeta,
       Cyrix, UMC, NexGen, Rise, and SiS CPUs.
     '';
-
     platforms = [ "i686-linux" "x86_64-linux" ];
-    license = lib.licenses.gpl2;
+    license = licenses.gpl2Plus;
     homepage = "http://etallen.com/cpuid.html";
-    maintainers = with lib.maintainers; [ blitz ];
+    maintainers = with maintainers; [ blitz ];
   };
 
 }