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

20 lines
448 B
Nix
Raw Normal View History

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