diff options
Diffstat (limited to 'pkgs/applications/kde/okteta.nix')
-rw-r--r-- | pkgs/applications/kde/okteta.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/applications/kde/okteta.nix b/pkgs/applications/kde/okteta.nix new file mode 100644 index 000000000000..59520e285327 --- /dev/null +++ b/pkgs/applications/kde/okteta.nix @@ -0,0 +1,26 @@ +{ + kdeApp, lib, kdeWrapper, + extra-cmake-modules, kdoctools, + kconfig, kinit, + kcmutils, kconfigwidgets, knewstuff, kparts, qca-qt5 +}: + +let + unwrapped = + kdeApp { + name = "okteta"; + meta = { + license = with lib.licenses; [ gpl2 ]; + maintainers = with lib.maintainers; [ peterhoeg ]; + }; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + propagatedBuildInputs = [ + kconfig kinit + kcmutils kconfigwidgets knewstuff kparts qca-qt5 + ]; + }; + +in kdeWrapper { + inherit unwrapped; + targets = [ "bin/okteta" ]; +} |