nixpkgs/pkgs/applications/kde/kig.nix
Thomas Tuegel 8be4bd7416
kdeApplications: Move out of desktops/kde-5
- There is no such thing as KDE 5
2017-02-27 11:49:30 -06:00

27 lines
486 B
Nix

{
kdeApp, lib, kdeWrapper
, ecm, kdoctools, kparts
, qtsvg, qtxmlpatterns, ktexteditor, boost
}:
let
unwrapped =
kdeApp {
name = "kig";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ raskin ];
};
nativeBuildInputs = [ ecm kdoctools ];
buildInputs = [
kparts qtsvg qtxmlpatterns ktexteditor boost
];
};
in
kdeWrapper {
inherit unwrapped;
targets = [ "bin/kig" ];
}