mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
49 lines
919 B
Nix
49 lines
919 B
Nix
{ lib
|
|
, mkDerivation
|
|
, fetchFromGitLab
|
|
, cmake
|
|
, extra-cmake-modules
|
|
, kconfig
|
|
, kcoreaddons
|
|
, ki18n
|
|
, knotifications
|
|
, qtbase
|
|
, qtquickcontrols2
|
|
, qtx11extras
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "mauikit";
|
|
version = "2.0.2";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "invent.kde.org";
|
|
owner = "maui";
|
|
repo = "mauikit";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-skukb9M6jhijCTb+tMIz/3vUCAvVJw+4zTFv9Z7HqWk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
];
|
|
|
|
buildInputs = [
|
|
kconfig
|
|
kcoreaddons
|
|
ki18n
|
|
knotifications
|
|
qtquickcontrols2
|
|
qtx11extras
|
|
];
|
|
|
|
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";
|
|
};
|
|
}
|