1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/system/acpica-tools/default.nix
R. RyanTM e04f5c925e acpica-tools: 20180629 -> 20180810 (#45255)
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.
2018-08-21 20:53:28 +02:00

37 lines
795 B
Nix

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