nixpkgs/pkgs/tools/system/acpica-tools/default.nix
Alyssa Ross 35759160d6
acpica-tools: fix cross
The default value of INSTALLFLAGS is "-m 555 -s", -s being the option
to run the "strip" program on the installed files.  When
cross-compiling, we don't have a strip program (we have
"${stdenv.cc.targetPrefix}strip"), so install fails.

The simplest fix for this is to just remove -s from INSTALLFLAGS,
since stdenv will automatically strip all installed binaries at the
end anyway.
2021-09-10 14:02:48 +00:00

42 lines
901 B
Nix

{ lib, stdenv, fetchurl, bison, flex }:
stdenv.mkDerivation rec {
pname = "acpica-tools";
version = "20210730";
src = fetchurl {
url = "https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz";
sha256 = "1pmm977nyl3bs71ipzcl4dh30qm8x9wm2p2ml0m62rl62kai832a";
};
NIX_CFLAGS_COMPILE = "-O3";
enableParallelBuilding = true;
buildFlags = [
"acpibin"
"acpidump"
"acpiexamples"
"acpiexec"
"acpihelp"
"acpisrc"
"acpixtract"
"iasl"
];
nativeBuildInputs = [ bison flex ];
# We can handle stripping ourselves.
INSTALLFLAGS = "-m 555";
installFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
description = "ACPICA Tools";
homepage = "https://www.acpica.org/";
license = with licenses; [ iasl gpl2Only bsd3 ];
platforms = platforms.linux;
maintainers = with maintainers; [ tadfisher ];
};
}