2013-01-09 19:49:41 +00:00
|
|
|
{stdenv, fetchurl, pciutils, python}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.30";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "x86info";
|
2013-01-09 19:49:41 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://codemonkey.org.uk/projects/x86info/${pname}-${version}.tgz";
|
2013-01-09 19:49:41 +00:00
|
|
|
sha256 = "0a4lzka46nabpsrg3n7akwr46q38f96zfszd73xcback1s2hjc7y";
|
|
|
|
};
|
|
|
|
|
2014-12-03 21:22:30 +00:00
|
|
|
preConfigure = ''
|
2015-01-08 09:26:49 +00:00
|
|
|
patchShebangs .
|
|
|
|
|
2014-12-03 21:22:30 +00:00
|
|
|
# ignore warnings
|
|
|
|
sed -i 's/-Werror -Wall//' Makefile
|
|
|
|
'';
|
2013-02-16 20:28:41 +00:00
|
|
|
|
2013-01-09 19:49:41 +00:00
|
|
|
buildInputs = [ pciutils python ];
|
|
|
|
|
|
|
|
installPhase = ''
|
2014-06-30 12:56:10 +00:00
|
|
|
mkdir -p $out/bin
|
2013-01-09 19:49:41 +00:00
|
|
|
cp x86info lsmsr $out/bin
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "Identification utility for the x86 series of processors";
|
2013-02-16 20:28:41 +00:00
|
|
|
longDescription =
|
2013-01-11 17:25:32 +00:00
|
|
|
''
|
|
|
|
x86info will identify all Intel/AMD/Centaur/Cyrix/VIA CPUs. It leverages
|
|
|
|
the cpuid kernel module where possible. it supports parsing model specific
|
|
|
|
registers (MSRs) via the msr kernel module. it will approximate processor
|
|
|
|
frequency, and identify the cache sizes and layout.
|
|
|
|
'';
|
2017-09-13 12:08:42 +00:00
|
|
|
platforms = [ "i686-linux" "x86_64-linux" ];
|
2013-01-11 17:25:32 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://codemonkey.org.uk/projects/x86info/";
|
2013-01-09 19:49:41 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [jcumming];
|
|
|
|
};
|
|
|
|
}
|