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