nixpkgs/pkgs/applications/kde/kig.nix

27 lines
518 B
Nix
Raw Normal View History

2017-02-20 16:46:15 +01:00
{
kdeApp, lib, kdeWrapper
, extra-cmake-modules, kdoctools, kparts
2017-02-20 16:46:15 +01:00
, qtsvg, qtxmlpatterns, ktexteditor, boost
}:
let
unwrapped =
kdeApp {
name = "kig";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ raskin ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-02-20 16:46:15 +01:00
buildInputs = [
kparts qtsvg qtxmlpatterns ktexteditor boost
];
};
in
kdeWrapper {
inherit unwrapped;
targets = [ "bin/kig" ];
}