nixpkgs/pkgs/os-specific/linux/dmidecode/default.nix

19 lines
508 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2013-11-20 21:16:50 +00:00
name = "dmidecode-2.12";
src = fetchurl {
url = "mirror://savannah/dmidecode/${name}.tar.bz2";
2013-11-20 21:16:50 +00:00
sha256 = "122hgaw8mpqdfra159lfl6pyk3837giqx6vq42j64fjnbl2z6gwi";
};
makeFlags = "prefix=$(out)";
2013-12-11 23:32:13 +00:00
meta = with stdenv.lib; {
homepage = http://www.nongnu.org/dmidecode/;
description = "A tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard";
2013-12-11 23:32:13 +00:00
platforms = platforms.linux;
};
}