repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
anvil-editor: init at 0.4
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
kdevelop
/
wrapper.nix
blob
c73f2bba7b5083099ac163792a787db0f842c806
1
{ lib, symlinkJoin, kdevelop-unwrapped, plugins ? null }:
2
3
symlinkJoin {
4
name = "kdevelop-with-plugins";
5
6
paths = [ kdevelop-unwrapped ] ++ (lib.optionals (plugins != null) plugins);
7
}