1 { lib, stdenv, fetchFromGitHub, pkg-config, glib, vala }:
3 stdenv.mkDerivation rec {
5 version = "2.0.20211107";
7 src = fetchFromGitHub {
11 sha256 = "1n1x1ybbwbanibw7b90k7v4cadagl41li17hz2l8s2sapacvq3mw";
14 buildInputs = [ glib ];
16 nativeBuildInputs = [ pkg-config vala ];
18 makeFlags = [ "PREFIX=$(out)" ];
21 description = "Desktop notifications, the UNIX way";
23 tiramisu is a notification daemon based on dunst that outputs notifications
24 to STDOUT in order to allow the user to process notifications any way they
27 homepage = "https://github.com/Sweets/tiramisu";
28 license = licenses.mit;
29 platforms = platforms.linux;
30 maintainers = with maintainers; [ wishfort36 fortuneteller2k ];