mirror of
https://git.lgmrszd.xyz/Lgmrszd/nix-cfg.git
synced 2024-11-09 21:38:34 +01:00
Wrap IDEA to add libraries to runtime
This commit is contained in:
parent
4bf0692ee5
commit
75f45fc036
1 changed files with 10 additions and 2 deletions
|
@ -89,8 +89,16 @@
|
|||
lutris
|
||||
minetest
|
||||
# dev
|
||||
# jetbrains.jdk
|
||||
jetbrains.idea-community
|
||||
# Wrap idea-community to add libraries required for Minecraft Moddev
|
||||
(symlinkJoin {
|
||||
name = "idea-community";
|
||||
paths = [ jetbrains.idea-community ];
|
||||
buildInputs = [ makeWrapper ];
|
||||
postBuild = ''
|
||||
wrapProgram $out/bin/idea-community \
|
||||
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [libpulseaudio libGL glfw openal stdenv.cc.cc.lib]}"
|
||||
'';
|
||||
})
|
||||
packwiz
|
||||
# vscodium # see programs.vscode
|
||||
rnix-lsp
|
||||
|
|
Loading…
Reference in a new issue