38 lines
588 B
Nix
38 lines
588 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
|
|
];
|
|
}
|