1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

lshw: fix static build

This commit is contained in:
Vanilla 2023-12-12 17:58:03 +08:00
parent d92daec27e
commit 11a5040a48
No known key found for this signature in database
GPG key ID: 3750028ED04FA42E

View file

@ -37,6 +37,8 @@ stdenv.mkDerivation rec {
buildFlags = [ "all" ] ++ lib.optional withGUI "gui";
hardeningDisable = lib.optionals stdenv.hostPlatform.isStatic [ "fortify" ];
installTargets = [ "install" ] ++ lib.optional withGUI "install-gui";
enableParallelBuilding = true;