33 lines
881 B
Nix
33 lines
881 B
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, scdoc
|
|
, systemd, pango, cairo, gdk-pixbuf
|
|
, wayland, wayland-protocols
|
|
, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mako";
|
|
version = "1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "emersion";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0f92krcgybl4113g2gawf7lcbh1fss7bq4cx81h1zyn7yvxlwx2b";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-protocols wrapGAppsHook ];
|
|
buildInputs = [ systemd pango cairo gdk-pixbuf wayland ];
|
|
|
|
mesonFlags = [
|
|
"-Dzsh-completions=true"
|
|
"-Dsd-bus-provider=libsystemd"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A lightweight Wayland notification daemon";
|
|
homepage = "https://wayland.emersion.fr/mako/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dywedir synthetica ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|