13 lines
331 B
Nix
13 lines
331 B
Nix
{pkgs, ...}: {
|
|
home.packages = with pkgs; [
|
|
(symlinkJoin {
|
|
name = "idea-ultimate";
|
|
paths = [jetbrains.idea-ultimate];
|
|
buildInputs = [makeWrapper];
|
|
postBuild = ''
|
|
wrapProgram $out/bin/idea-ultimate \
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [libGL]}"
|
|
'';
|
|
})
|
|
];
|
|
}
|