Files
nixpkgs/pkgs/development/libraries/maui-core/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
879 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
mkDerivation,
libcanberra,
pulseaudio,
fetchFromGitHub,
cmake,
extra-cmake-modules,
kio,
kidletime,
}:
mkDerivation rec {
pname = "maui-core";
version = "0.6.6";
src = fetchFromGitHub {
owner = "Nitrux";
repo = "maui-core";
tag = "v${version}";
sha256 = "sha256-o0Xwh9w0cClMw85FwpQB9CNWoSnzARxs6aGfvCA4BhA=";
};
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 ];
platforms = platforms.linux;
};
}