Merge pull request #22478 from peterhoeg/p/okteta

okteta: init at 16.12.1 (kf5 version)
This commit is contained in:
Thomas Tuegel 2017-02-06 11:19:14 -06:00 committed by GitHub
commit 667a78f176
2 changed files with 27 additions and 0 deletions

View File

@ -65,6 +65,7 @@ let
libkipi = callPackage ./libkipi.nix {};
libkomparediff2 = callPackage ./libkomparediff2.nix {};
marble = callPackage ./marble.nix {};
okteta = callPackage ./okteta.nix {};
okular = callPackage ./okular.nix {};
print-manager = callPackage ./print-manager.nix {};
spectacle = callPackage ./spectacle.nix {};

View File

@ -0,0 +1,26 @@
{
kdeApp, lib, kdeWrapper,
ecm, 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 = [ ecm kdoctools ];
propagatedBuildInputs = [
kconfig kinit
kcmutils kconfigwidgets knewstuff kparts qca-qt5
];
};
in kdeWrapper {
inherit unwrapped;
targets = [ "bin/okteta" ];
}