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-12-05 00:23:39 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-12-05 00:23:39 +0100
commit62b03e2c3967e6c0b618db490fc00e7aea4f4463 (patch)
tree49fadc836dcf9a8c6b53a7931f4336ded6279cf4 /pkgs/os-specific/linux/cpuid
parent0e3be5c30b528b7dac26607ad30ceecd773cb16d (diff)
downloadnixpkgs-62b03e2c3967e6c0b618db490fc00e7aea4f4463.tar
nixpkgs-62b03e2c3967e6c0b618db490fc00e7aea4f4463.tar.gz
nixpkgs-62b03e2c3967e6c0b618db490fc00e7aea4f4463.tar.bz2
nixpkgs-62b03e2c3967e6c0b618db490fc00e7aea4f4463.tar.lz
nixpkgs-62b03e2c3967e6c0b618db490fc00e7aea4f4463.tar.xz
nixpkgs-62b03e2c3967e6c0b618db490fc00e7aea4f4463.tar.zst
nixpkgs-62b03e2c3967e6c0b618db490fc00e7aea4f4463.zip
cpuid: 20211114 -> 20211129
Diffstat (limited to 'pkgs/os-specific/linux/cpuid')
-rw-r--r--pkgs/os-specific/linux/cpuid/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/cpuid/default.nix b/pkgs/os-specific/linux/cpuid/default.nix
index 49c64c9378d..2edc686f27d 100644
--- a/pkgs/os-specific/linux/cpuid/default.nix
+++ b/pkgs/os-specific/linux/cpuid/default.nix
@@ -6,11 +6,11 @@
 
 stdenv.mkDerivation rec {
   pname = "cpuid";
-  version = "20211114";
+  version = "20211129";
 
   src = fetchurl {
     url = "http://etallen.com/cpuid/${pname}-${version}.src.tar.gz";
-    sha256 = "1dz10d958hz7qbh77hxf2k6sc7y9nkvlmr2469hv6gwgqs6dq1vi";
+    sha256 = "sha256-Iwdyu4jERzLmikLS7/Q7z/RtiTv06m4EFR1MtujIji8=";
   };
 
   # For pod2man during the build process.
@@ -47,10 +47,9 @@ 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 = licenses.gpl2Plus;
     homepage = "http://etallen.com/cpuid.html";
+    license = licenses.gpl2Plus;
     maintainers = with maintainers; [ blitz ];
+    platforms = [ "i686-linux" "x86_64-linux" ];
   };
-
 }