lol

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

idea: add `libsecret` to the library path

authored by

Jörg Thalheim and committed by
GitHub
e7946b0c ee735ff1

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