mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
dd0c85d546
mako: wrap with wrapGAppsHook
30 lines
842 B
Nix
30 lines
842 B
Nix
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, scdoc
|
|
, systemd, pango, cairo, gdk-pixbuf
|
|
, wayland, wayland-protocols
|
|
, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mako";
|
|
version = "1.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "emersion";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0hwvibpnrximb628w9dsfjpi30b5jy7nfkm4d94z5vhp78p43vxh";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkgconfig scdoc wayland-protocols wrapGAppsHook ];
|
|
buildInputs = [ systemd pango cairo gdk-pixbuf wayland ];
|
|
|
|
mesonFlags = [ "-Dzsh-completions=true" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A lightweight Wayland notification daemon";
|
|
homepage = "https://wayland.emersion.fr/mako/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dywedir synthetica ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|