ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / dm / dmidecode / package.nix
blob2425a053e37a8fa9c919c6fa2e5854be6325229b
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "dmidecode";
5   version = "3.6";
7   src = fetchurl {
8     url = "mirror://savannah/dmidecode/dmidecode-${version}.tar.xz";
9     sha256 = "sha256-5Axl8+w9r+Ma2DSaTvGpcSLTj2UATtZldeGo1XXdi64=";
10   };
12   makeFlags = [
13     "prefix=$(out)"
14     "CC=${stdenv.cc.targetPrefix}cc"
15   ];
17   meta = with lib; {
18     homepage = "https://www.nongnu.org/dmidecode/";
19     description = "Tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard";
20     license = licenses.gpl2Plus;
21     platforms = platforms.linux;
22     maintainers = [ ];
23   };