nixpkgs/pkgs/applications/misc/tiramisu/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
899 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, glib, vala }:
2020-12-29 21:13:50 +00:00
stdenv.mkDerivation rec {
2020-12-29 21:13:50 +00:00
pname = "tiramisu";
version = "2.0.20211107";
2020-12-29 21:13:50 +00:00
src = fetchFromGitHub {
owner = "Sweets";
repo = pname;
rev = version;
sha256 = "1n1x1ybbwbanibw7b90k7v4cadagl41li17hz2l8s2sapacvq3mw";
2020-12-29 21:13:50 +00:00
};
buildInputs = [ glib ];
nativeBuildInputs = [ pkg-config vala ];
2020-12-29 21:13:50 +00:00
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
2020-12-29 21:13:50 +00:00
description = "Desktop notifications, the UNIX way";
longDescription = ''
2021-05-19 16:48:19 +00:00
tiramisu is a notification daemon based on dunst that outputs notifications
to STDOUT in order to allow the user to process notifications any way they
prefer.
2020-12-29 21:13:50 +00:00
'';
homepage = "https://github.com/Sweets/tiramisu";
license = licenses.mit;
platforms = platforms.linux;
2023-11-17 10:03:27 +00:00
maintainers = with maintainers; [ wishfort36 moni ];
2024-02-11 02:19:15 +00:00
mainProgram = "tiramisu";
2020-12-29 21:13:50 +00:00
};
}