summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/okteta
diff options
context:
space:
mode:
authorBastian Köcher <git@kchr.de>2018-04-21 14:40:10 +0200
committeradisbladis <adis@blad.is>2018-04-25 09:35:49 +0800
commit58f53dc4d4b8b87172956e3658d24f158f9abaa4 (patch)
treeb03be3c05f217e3e589e78a56477b4b77bacf6a7 /pkgs/applications/editors/okteta
parentfaed18320652bd9d08d609ec663cbdb3aaec0be3 (diff)
okteta: Move into own package
Okteta was removed from kde applications and will now be released independently. So, we currently use the released version from 17.12.3.
Diffstat (limited to 'pkgs/applications/editors/okteta')
-rw-r--r--pkgs/applications/editors/okteta/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/editors/okteta/default.nix b/pkgs/applications/editors/okteta/default.nix
new file mode 100644
index 000000000000..770eb63dc69e
--- /dev/null
+++ b/pkgs/applications/editors/okteta/default.nix
@@ -0,0 +1,27 @@
+{
+ mkDerivation, lib, fetchurl,
+ extra-cmake-modules, kdoctools,
+ qtscript, kconfig, kinit, karchive, kcrash,
+ kcmutils, kconfigwidgets, knewstuff, kparts, qca-qt5,
+ shared-mime-info
+}:
+
+let
+ version = "17.12.3";
+in mkDerivation rec {
+ name = "okteta";
+ src = fetchurl {
+ url = "mirror://kde/stable/applications/${version}/src/${name}-${version}.tar.xz";
+ sha256 = "03wsv83l1cay2dpcsksad124wzan7kh8zxdw1h0yicn398kdbck4";
+ };
+ meta = {
+ license = with lib.licenses; [ gpl2 ];
+ maintainers = with lib.maintainers; [ peterhoeg bkchr ];
+ };
+ nativeBuildInputs = [ qtscript extra-cmake-modules kdoctools ];
+ buildInputs = [ shared-mime-info ];
+ propagatedBuildInputs = [
+ kconfig kinit kcmutils kconfigwidgets knewstuff kparts qca-qt5
+ karchive kcrash
+ ];
+}