1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/kde/kig.nix

27 lines
528 B
Nix
Raw Normal View History

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