nixpkgs/pkgs/applications/kde/kdevelop/wrapper.nix
André Vitor de Lima Matos 62a4d12769 kdevelop: move to kde/gear release 22.04.2
Also, use python 3.9 to build kdev-python plugin, broken on python 3.10.
2022-06-25 18:29:02 -03:00

8 lines
184 B
Nix

{ symlinkJoin, kdevelop-unwrapped, plugins ? null }:
symlinkJoin {
name = "kdevelop-with-plugins";
paths = [ kdevelop-unwrapped ] ++ (if plugins != null then plugins else []);
}