nixpkgs/pkgs/applications/kde/kig.nix

21 lines
453 B
Nix
Raw Normal View History

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