forked from mirrors/nixpkgs
libsForQt5.maui-core: init at 0.5.6
This commit is contained in:
parent
58d84f7f0f
commit
21e0f7502b
44
pkgs/development/libraries/maui-core/default.nix
Normal file
44
pkgs/development/libraries/maui-core/default.nix
Normal 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 ];
|
||||
};
|
||||
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue