30 lines
842 B
Nix
Raw Normal View History

2019-04-19 17:49:29 +03:00
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, scdoc
2019-05-22 07:03:39 -04:00
, systemd, pango, cairo, gdk-pixbuf
, wayland, wayland-protocols
, wrapGAppsHook }:
2018-10-23 23:12:44 +03:00
stdenv.mkDerivation rec {
2019-04-19 17:49:29 +03:00
pname = "mako";
2020-01-12 15:51:02 +01:00
version = "1.4.1";
2018-10-23 23:12:44 +03:00
src = fetchFromGitHub {
owner = "emersion";
2019-04-19 17:49:29 +03:00
repo = pname;
2018-10-23 23:12:44 +03:00
rev = "v${version}";
2020-01-12 15:51:02 +01:00
sha256 = "0hwvibpnrximb628w9dsfjpi30b5jy7nfkm4d94z5vhp78p43vxh";
2018-10-23 23:12:44 +03:00
};
nativeBuildInputs = [ meson ninja pkgconfig scdoc wayland-protocols wrapGAppsHook ];
2019-05-22 07:03:39 -04:00
buildInputs = [ systemd pango cairo gdk-pixbuf wayland ];
2019-04-19 17:49:29 +03:00
2019-07-19 22:08:53 +03:00
mesonFlags = [ "-Dzsh-completions=true" ];
2018-10-23 23:12:44 +03:00
meta = with stdenv.lib; {
description = "A lightweight Wayland notification daemon";
homepage = "https://wayland.emersion.fr/mako/";
2018-10-23 23:12:44 +03:00
license = licenses.mit;
2020-01-12 15:51:24 +01:00
maintainers = with maintainers; [ dywedir synthetica ];
2018-10-23 23:12:44 +03:00
platforms = platforms.linux;
};
}