mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
commit
4ca4f1564f
33
pkgs/os-specific/linux/x86info/default.nix
Normal file
33
pkgs/os-specific/linux/x86info/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{stdenv, fetchurl, pciutils, python}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.30";
|
||||
name = "x86info-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://codemonkey.org.uk/projects/x86info/${name}.tgz";
|
||||
sha256 = "0a4lzka46nabpsrg3n7akwr46q38f96zfszd73xcback1s2hjc7y";
|
||||
};
|
||||
|
||||
buildInputs = [ pciutils python ];
|
||||
|
||||
installPhase = ''
|
||||
ensureDir $out/bin
|
||||
cp x86info lsmsr $out/bin
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "An identification utility for the x86 series of processors.";
|
||||
longDescription =
|
||||
''
|
||||
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.
|
||||
'';
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
homepage = http://codemonkey.org.uk/projects/x86info/;
|
||||
maintainers = with stdenv.lib.maintainers; [jcumming];
|
||||
};
|
||||
}
|
@ -1753,6 +1753,8 @@ let
|
||||
|
||||
wv2 = callPackage ../tools/misc/wv2 { };
|
||||
|
||||
x86info = callPackage ../os-specific/linux/x86info { };
|
||||
|
||||
x11_ssh_askpass = callPackage ../tools/networking/x11-ssh-askpass { };
|
||||
|
||||
xbursttools = assert stdenv ? glibc; import ../tools/misc/xburst-tools {
|
||||
|
Loading…
Reference in New Issue
Block a user