summary refs log tree commit diff
path: root/pkgs/os-specific/linux/dmidecode/default.nix
blob: 4e9c49e4f5874c8a0cc670db088216be68d1c0c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "dmidecode-2.10";

  src = fetchurl {
    url = "http://www.very-clever.com/download/nongnu/dmidecode/${name}.tar.bz2";
    sha256 = "1h72r5scrpvgw60hif5msjg6vw2x0jd6z094lhbh6cjk6gls6x2d";
  };

  makeFlags = "prefix=$(out)";

  meta = {
    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";
  };
}