mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
35759160d6
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.
41 lines
901 B
Nix
41 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 ];
|
|
};
|
|
}
|