05bdbc55ff
Adapted from <https://apps.kde.org/>.
21 lines
534 B
Nix
21 lines
534 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
boost, karchive, kcrash, kiconthemes, kparts, ktexteditor, qtsvg,
|
|
qtxmlpatterns,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kig";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/kig/";
|
|
description = "Interactive geometry";
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = with lib.maintainers; [ raskin ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
boost karchive kcrash kiconthemes kparts ktexteditor qtsvg qtxmlpatterns
|
|
];
|
|
}
|