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

47 lines
889 B
Nix
Raw Normal View History

2021-03-06 13:31:22 +03:00
{ lib
, mkDerivation
, fetchFromGitLab
, cmake
, extra-cmake-modules
2021-05-09 14:16:26 +03:00
, kconfig
, kcoreaddons
, ki18n
2021-09-15 06:29:04 +03:00
, knotifications
2021-03-06 13:31:22 +03:00
, qtbase
, qtquickcontrols2
}:
mkDerivation rec {
pname = "mauikit";
2021-09-15 06:29:04 +03:00
version = "2.0.1";
2021-03-06 13:31:22 +03:00
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "maui";
repo = "mauikit";
rev = "v${version}";
2021-09-15 06:29:04 +03:00
sha256 = "sha256-qz/MePMvyGR8lzR2xB2f9QENx04UHu0Xef7v0xcKovo=";
2021-03-06 13:31:22 +03:00
};
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
2021-05-09 14:16:26 +03:00
kconfig
kcoreaddons
ki18n
2021-09-15 06:29:04 +03:00
knotifications
2021-03-06 13:31:22 +03: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 ];
broken = versionOlder qtbase.version "5.15.0";
2021-03-06 13:31:22 +03:00
};
}