From 9b7467eecb87714662fa8c62bf0b111cbbb5f967 Mon Sep 17 00:00:00 2001 From: Tad Fisher Date: Thu, 15 Feb 2018 12:50:57 -0800 Subject: [PATCH] acpica-tools: init at 20180209 (#34883) --- lib/maintainers.nix | 1 + pkgs/tools/system/acpica-tools/default.nix | 36 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 39 insertions(+) create mode 100644 pkgs/tools/system/acpica-tools/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 3c26926afd73..ec47bfbe0073 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -671,6 +671,7 @@ symphorien = "Guillaume Girol "; szczyp = "Szczyp "; sztupi = "Attila Sztupak "; + tadfisher = "Tad Fisher "; taeer = "Taeer Bar-Yam "; tailhook = "Paul Colomiets "; taketwo = "Sergey Alexandrov "; diff --git a/pkgs/tools/system/acpica-tools/default.nix b/pkgs/tools/system/acpica-tools/default.nix new file mode 100644 index 000000000000..1381f13fd3c5 --- /dev/null +++ b/pkgs/tools/system/acpica-tools/default.nix @@ -0,0 +1,36 @@ +{ stdenv, fetchurl, bison, flex }: + +stdenv.mkDerivation rec { + name = "acpica-tools-${version}"; + version = "20180209"; + + src = fetchurl { + url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz"; + sha256 = "1rpdfwa4vwnvyxdp9ygqjckmabc3s8kyg3jyq4n4f0rhr1zl4zy5"; + }; + + 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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b664493fec9a..aca4f9212e14 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -407,6 +407,8 @@ with pkgs; ffmpeg = ffmpeg_1; }; + acpica-tools = callPackage ../tools/system/acpica-tools { }; + actdiag = pythonPackages.actdiag; actkbd = callPackage ../tools/system/actkbd { };