nixpkgs/pkgs/applications/kde/kdevelop/wrapper.nix
2023-02-14 19:11:59 +01:00

8 lines
189 B
Nix

{ lib, symlinkJoin, kdevelop-unwrapped, plugins ? null }:
symlinkJoin {
name = "kdevelop-with-plugins";
paths = [ kdevelop-unwrapped ] ++ (lib.optionals (plugins != null) plugins);
}