Update x86info description. Add Homepage.

This commit is contained in:
Jack Cummings 2013-01-11 09:25:32 -08:00
parent 42859e49ed
commit 0cfd455a67

View file

@ -17,8 +17,17 @@ stdenv.mkDerivation rec {
'';
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];
description = "x86info, a CPU identification utility.";
};
}