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

21 lines
453 B
Nix
Raw Normal View History

2017-02-20 10:46:15 -05:00
{
2017-05-16 11:56:41 -04:00
mkDerivation, lib,
2017-05-17 15:26:11 -04:00
extra-cmake-modules, kdoctools,
kparts, qtsvg, qtxmlpatterns, ktexteditor, boost,
karchive, kcrash
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 ];
};
2017-05-17 15:26:11 -04:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ boost ];
propagatedBuildInputs = [
kparts qtsvg qtxmlpatterns ktexteditor karchive kcrash
2017-05-16 11:56:41 -04:00
];
2017-02-20 10:46:15 -05:00
}