about summary refs log tree commit diff
path: root/pkgs/applications/kde/kdevelop/wrapper.nix
blob: c73f2bba7b5083099ac163792a787db0f842c806 (plain) (blame)
1
2
3
4
5
6
7
{ lib, symlinkJoin, kdevelop-unwrapped, plugins ? null }:

symlinkJoin {
  name = "kdevelop-with-plugins";

  paths = [ kdevelop-unwrapped ] ++ (lib.optionals (plugins != null) plugins);
}