Loading pkgs/by-name/op/openfortivpn/package.nix +3 −1 Original line number Diff line number Diff line Loading @@ -39,7 +39,9 @@ stdenv.mkDerivation rec { "--sysconfdir=/etc" ] ++ lib.optional withSystemd "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system" ++ lib.optional withPpp "--with-pppd=${ppp}/bin/pppd"; ++ lib.optional withPpp "--with-pppd=${ppp}/bin/pppd" # configure: error: cannot check for file existence when cross compiling ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "--disable-proc"; enableParallelBuilding = true; Loading Loading
pkgs/by-name/op/openfortivpn/package.nix +3 −1 Original line number Diff line number Diff line Loading @@ -39,7 +39,9 @@ stdenv.mkDerivation rec { "--sysconfdir=/etc" ] ++ lib.optional withSystemd "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system" ++ lib.optional withPpp "--with-pppd=${ppp}/bin/pppd"; ++ lib.optional withPpp "--with-pppd=${ppp}/bin/pppd" # configure: error: cannot check for file existence when cross compiling ++ lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "--disable-proc"; enableParallelBuilding = true; Loading