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
nixos/kubernetes/kubelet: Fix sandbox image load on containerd 2.x (#364558)
[NixPkgs.git]
/
pkgs
/
applications
/
kde
/
kdevelop
/
kdev-php.nix
blob
5edb607cb40ee7c172c3806d2c4412a3bf46347d
1
{
2
mkDerivation,
3
lib,
4
cmake,
5
extra-cmake-modules,
6
threadweaver,
7
ktexteditor,
8
kdevelop-unwrapped,
9
kdevelop-pg-qt,
10
}:
11
12
mkDerivation rec {
13
pname = "kdev-php";
14
15
nativeBuildInputs = [
16
cmake
17
extra-cmake-modules
18
];
19
buildInputs = [
20
kdevelop-pg-qt
21
threadweaver
22
ktexteditor
23
kdevelop-unwrapped
24
];
25
26
dontWrapQtApps = true;
27
28
meta = with lib; {
29
maintainers = [ maintainers.aanderse ];
30
platforms = platforms.linux;
31
description = "PHP support for KDevelop";
32
homepage = "https://www.kdevelop.org";
33
license = [ licenses.gpl2 ];
34
};
35
}