nixpkgs/pkgs/development/libraries/mauikit/default.nix

45 lines
854 B
Nix
Raw Normal View History

2021-03-06 10:31:22 +00:00
{ lib
, mkDerivation
, fetchFromGitLab
, cmake
, extra-cmake-modules
2021-05-09 12:16:26 +01:00
, kconfig
, kcoreaddons
, ki18n
2021-03-06 10:31:22 +00:00
, qtbase
, qtquickcontrols2
}:
mkDerivation rec {
pname = "mauikit";
2021-05-09 12:16:26 +01:00
version = "1.2.2";
2021-03-06 10:31:22 +00:00
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "maui";
repo = "mauikit";
rev = "v${version}";
2021-05-09 12:16:26 +01:00
sha256 = "1jz0a65bbznjg7aaq19rdyp956wn6xc1x4xigfkhj6mwsvnb49av";
2021-03-06 10:31:22 +00:00
};
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
2021-05-09 12:16:26 +01:00
kconfig
kcoreaddons
ki18n
2021-03-06 10:31:22 +00:00
qtquickcontrols2
];
meta = with lib; {
homepage = "https://mauikit.org/";
description = "Free and modular front-end framework for developing fast and compelling user experiences";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ dotlambda ];
2021-03-09 20:13:25 +00:00
broken = versionOlder qtbase.version "5.14.0";
2021-03-06 10:31:22 +00:00
};
}