at 15.09-beta 18 lines 508 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "dmidecode-2.12"; 5 6 src = fetchurl { 7 url = "mirror://savannah/dmidecode/${name}.tar.bz2"; 8 sha256 = "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi"; 9 }; 10 11 makeFlags = "prefix=$(out)"; 12 13 meta = with stdenv.lib; { 14 homepage = http://www.nongnu.org/dmidecode/; 15 description = "A tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard"; 16 platforms = platforms.linux; 17 }; 18}