1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/kde/kig.nix

19 lines
415 B
Nix
Raw Normal View History

2017-02-20 10:46:15 -05:00
{
2017-05-16 11:56:41 -04:00
mkDerivation, lib,
extra-cmake-modules, kdoctools, wrapGAppsHook,
kparts, qtsvg, qtxmlpatterns, ktexteditor, boost
2017-02-20 10:46:15 -05:00
}:
2017-05-16 11:56:41 -04:00
mkDerivation {
name = "kig";
meta = {
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ raskin ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
buildInputs = [
kparts qtsvg qtxmlpatterns ktexteditor boost
];
2017-02-20 10:46:15 -05:00
}