We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9203210 commit 78d20f2Copy full SHA for 78d20f2
1 file changed
pkgs/development/libraries/libiscsi/default.nix
@@ -13,8 +13,13 @@ stdenv.mkDerivation rec {
13
14
nativeBuildInputs = [ autoreconfHook ];
15
16
+ # This can be removed after >=1.20.0, or if the build suceeds with
17
+ # pie enabled (default on Musl).
18
+ hardeningDisable = [ "pie" ];
19
+
20
# This problem is gone on libiscsi master.
- NIX_CFLAGS_COMPILE = if stdenv.hostPlatform.is32bit then "-Wno-error=sign-compare" else null;
21
+ NIX_CFLAGS_COMPILE =
22
+ lib.optional stdenv.hostPlatform.is32bit "-Wno-error=sign-compare";
23
24
meta = with lib; {
25
description = "iscsi client library and utilities";
0 commit comments