Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
46 lines
879 B
Nix
46 lines
879 B
Nix
{
|
|
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;
|
|
};
|
|
|
|
}
|