2021-03-06 10:31:22 +00:00
|
|
|
{ lib
|
|
|
|
, mkDerivation
|
|
|
|
, cmake
|
|
|
|
, extra-cmake-modules
|
2021-05-09 12:16:26 +01:00
|
|
|
, kconfig
|
|
|
|
, kcoreaddons
|
|
|
|
, ki18n
|
2021-09-15 04:29:04 +01:00
|
|
|
, knotifications
|
2021-03-06 10:31:22 +00:00
|
|
|
, qtbase
|
|
|
|
, qtquickcontrols2
|
2021-09-25 17:59:18 +01:00
|
|
|
, qtx11extras
|
2021-03-06 10:31:22 +00:00
|
|
|
}:
|
|
|
|
|
2022-05-17 02:11:06 +01:00
|
|
|
mkDerivation {
|
2021-03-06 10:31:22 +00:00
|
|
|
pname = "mauikit";
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
extra-cmake-modules
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2021-05-09 12:16:26 +01:00
|
|
|
kconfig
|
|
|
|
kcoreaddons
|
|
|
|
ki18n
|
2021-09-15 04:29:04 +01:00
|
|
|
knotifications
|
2021-03-06 10:31:22 +00:00
|
|
|
qtquickcontrols2
|
2021-09-25 17:59:18 +01:00
|
|
|
qtx11extras
|
2021-03-06 10:31:22 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://mauikit.org/";
|
|
|
|
description = "Free and modular front-end framework for developing fast and compelling user experiences";
|
2022-05-17 02:11:06 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2021-03-06 10:31:22 +00:00
|
|
|
maintainers = with maintainers; [ dotlambda ];
|
|
|
|
};
|
|
|
|
}
|