mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
62a4d12769
Also, use python 3.9 to build kdev-python plugin, broken on python 3.10.
8 lines
184 B
Nix
8 lines
184 B
Nix
{ symlinkJoin, kdevelop-unwrapped, plugins ? null }:
|
|
|
|
symlinkJoin {
|
|
name = "kdevelop-with-plugins";
|
|
|
|
paths = [ kdevelop-unwrapped ] ++ (if plugins != null then plugins else []);
|
|
}
|