forked from mirrors/nixpkgs
27 lines
486 B
Nix
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" ];
|
||
|
}
|
||
|
|
||
|
|