Add libsecret to wxGTK32

Hi,
Can I get a committer (hell anyone who can put up a PR) to add libsecret to the buildInputs of the wxGTK32 (wxWidgets) package? wxWidgets uses libsecret (on Linux) for its wxSecretStore backend.

Simple addition:
…/pkgs/development/libraries/wxwidgets/wxGTK32.nix:

, libsecret
...

buildInputs = [
...
++ lib.optionals stdenv.hostPlatform.isLinux [
   ...
++>>>>> libsecret
]
]

Thanks,
simplejack

Done: wxGTK32: add missing optional deps by FliegendeWurst · Pull Request #396546 · NixOS/nixpkgs · GitHub

I also added other missing libraries, see PR for details.

1 Like

Top form @FliegendeWurst !

Thank-you