Merge pull request #36246 from Ma27/solve-keychain-issues-for-intellij

idea: add `libsecret` to the library path

Changed files
+3 -2
pkgs
applications
editors
jetbrains
+3 -2
pkgs/applications/editors/jetbrains/common.nix
···
{ stdenv, fetchurl, makeDesktopItem, makeWrapper, patchelf, p7zip
-
, coreutils, gnugrep, which, git, python, unzip }:
{ name, product, version, src, wmClass, jdk, meta } @ attrs:
···
--prefix PATH : "$out/libexec/${name}:${stdenv.lib.makeBinPath [ jdk coreutils gnugrep which git ]}" \
--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [
# Some internals want libstdc++.so.6
-
stdenv.cc.cc.lib
]}" \
--set JDK_HOME "$jdk" \
--set ${hiName}_JDK "$jdk" \
···
{ stdenv, fetchurl, makeDesktopItem, makeWrapper, patchelf, p7zip
+
, coreutils, gnugrep, which, git, python, unzip, libsecret
+
}:
{ name, product, version, src, wmClass, jdk, meta } @ attrs:
···
--prefix PATH : "$out/libexec/${name}:${stdenv.lib.makeBinPath [ jdk coreutils gnugrep which git ]}" \
--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [
# Some internals want libstdc++.so.6
+
stdenv.cc.cc.lib libsecret
]}" \
--set JDK_HOME "$jdk" \
--set ${hiName}_JDK "$jdk" \