mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
83ff4c23cf
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. These checks were done: - built on NixOS - /nix/store/dc5gdvaij7aajyirdny91s0whbspwjgn-acpica-tools-20180629/bin/acpibin passed the binary check. - /nix/store/dc5gdvaij7aajyirdny91s0whbspwjgn-acpica-tools-20180629/bin/acpidump passed the binary check. - /nix/store/dc5gdvaij7aajyirdny91s0whbspwjgn-acpica-tools-20180629/bin/acpiexec passed the binary check. - /nix/store/dc5gdvaij7aajyirdny91s0whbspwjgn-acpica-tools-20180629/bin/acpihelp passed the binary check. - /nix/store/dc5gdvaij7aajyirdny91s0whbspwjgn-acpica-tools-20180629/bin/acpinames passed the binary check. - /nix/store/dc5gdvaij7aajyirdny91s0whbspwjgn-acpica-tools-20180629/bin/acpixtract passed the binary check. - 6 of 6 passed binary check by having a zero exit code. - 0 of 6 passed binary check by having the new version present in output. - directory tree listing: https://gist.github.com/9296aa5d91d9452a3a1d83b0168e6b8d - du listing: https://gist.github.com/e7225e6df139c9308cd612a5fcba8acf
36 lines
795 B
Nix
36 lines
795 B
Nix
{ stdenv, fetchurl, bison, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "acpica-tools-${version}";
|
|
version = "20180629";
|
|
|
|
src = fetchurl {
|
|
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
|
|
sha256 = "0kwssazw7pqgxvxj41q5r0g83bqqk64f2lrpnfjn9p6v58zizlbh";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|