nixpkgs/pkgs/applications/kde/kig.nix

21 lines
534 B
Nix
Raw Normal View History

2017-02-20 18:46:15 +03:00
{
2017-05-16 18:56:41 +03:00
mkDerivation, lib,
2017-05-17 22:26:11 +03:00
extra-cmake-modules, kdoctools,
2017-06-21 16:50:20 +03:00
boost, karchive, kcrash, kiconthemes, kparts, ktexteditor, qtsvg,
qtxmlpatterns,
2017-02-20 18:46:15 +03:00
}:
2017-05-16 18:56:41 +03:00
mkDerivation {
2020-12-25 02:05:07 +03:00
pname = "kig";
2017-05-16 18:56:41 +03:00
meta = {
homepage = "https://apps.kde.org/kig/";
description = "Interactive geometry";
2017-05-16 18:56:41 +03:00
license = with lib.licenses; [ gpl2 ];
maintainers = with lib.maintainers; [ raskin ];
};
2017-05-17 22:26:11 +03:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-06-21 16:50:20 +03:00
buildInputs = [
boost karchive kcrash kiconthemes kparts ktexteditor qtsvg qtxmlpatterns
2017-05-16 18:56:41 +03:00
];
2017-02-20 18:46:15 +03:00
}