nixpkgs/pkgs/tools/system/acpica-tools/default.nix
R. RyanTM 950d5a6d2c acpica-tools: 20181213 -> 20190108
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-01-17 17:44:23 -08:00

37 lines
795 B
Nix

{ stdenv, fetchurl, bison, flex }:
stdenv.mkDerivation rec {
name = "acpica-tools-${version}";
version = "20190108";
src = fetchurl {
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
sha256 = "0bqhr3ndchvfhxb31147z8gd81dysyz5dwkvmp56832d0js2564q";
};
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 ];
};
}