nixpkgs/pkgs/tools/system/acpica-tools/default.nix
R. RyanTM 92e89815be acpica-tools: 20190108 -> 20190215 (#56581)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/acpica-tools/versions
2019-03-15 23:12:47 +01:00

37 lines
795 B
Nix

{ stdenv, fetchurl, bison, flex }:
stdenv.mkDerivation rec {
name = "acpica-tools-${version}";
version = "20190215";
src = fetchurl {
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
sha256 = "0dqdkg7agzwb34p74dhvr79a6xqraxh1025mm5vg3qmjn6r3l4vi";
};
NIX_CFLAGS_COMPILE = "-O3";
enableParallelBuilding = true;
buildFlags = [
"acpibin"
"acpidump"
"acpiexec"
"acpihelp"
"acpinames"
"acpixtract"
];
nativeBuildInputs = [ bison flex ];
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "ACPICA Tools";
homepage = "https://www.acpica.org/";
license = with licenses; [ gpl2 bsd3 ];
platforms = platforms.linux;
maintainers = with maintainers; [ tadfisher ];
};
}