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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
664 B
Nix
Raw Normal View History

2022-07-11 02:48:22 +00:00
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "dmidecode";
2022-07-11 02:48:22 +00:00
version = "3.4";
src = fetchurl {
url = "mirror://savannah/dmidecode/dmidecode-${version}.tar.xz";
2022-07-11 02:48:22 +00:00
sha256 = "sha256-Q8uoUdhGfJl5zNvqsZLrZjjH06aX66Xdt3naiDdUIhI=";
};
2021-07-29 18:50:58 +00:00
makeFlags = [
"prefix=$(out)"
"CC=${stdenv.cc.targetPrefix}cc"
];
meta = with lib; {
homepage = "https://www.nongnu.org/dmidecode/";
description = "A tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard";
2018-08-23 15:43:02 +00:00
license = licenses.gpl2Plus;
2013-12-11 23:32:13 +00:00
platforms = platforms.linux;
2022-07-11 02:48:22 +00:00
maintainers = with maintainers; [ delroth ];
};
}