libsForQt5.maui-core: init at 0.5.6

This commit is contained in:
Jonas Heinrich 2022-12-15 12:50:45 +01:00 committed by Yt
parent 58d84f7f0f
commit 21e0f7502b
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ lib
, pkgs
, mkDerivation
, libcanberra
, pulseaudio
, fetchFromGitHub
, cmake
, extra-cmake-modules
, kio
, kidletime
}:
mkDerivation rec {
pname = "maui-core";
version = "0.5.6";
src = fetchFromGitHub {
owner = "Nitrux";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-58ja76N7LrJ0f/SsNMYr7Z9hdW60PwsNlTkHQ+NEdUM=";
};
nativeBuildInputs = [
cmake
extra-cmake-modules
];
buildInputs = [
kidletime
kio
libcanberra
pulseaudio
];
meta = with lib; {
description = "Core libraries to manage the desktop to be shared between Maui Settings and Cask";
homepage = "https://github.com/Nitrux/maui-core";
# Missing license information https://github.com/Nitrux/maui-core/issues/1
license = licenses.unfree;
maintainers = with maintainers; [ onny ];
};
}

View File

@ -152,6 +152,8 @@ in (kdeFrameworks // plasmaMobileGear // plasma5 // plasma5.thirdParty // kdeGea
maplibre-gl-native = callPackage ../development/libraries/maplibre-gl-native { };
maui-core = libsForQt5.callPackage ../development/libraries/maui-core { };
mlt = callPackage ../development/libraries/mlt/qt-5.nix { };
phonon = callPackage ../development/libraries/phonon { };