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

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

36 lines
1.1 KiB
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";
# FIXME: once a newer release in upstream is available
version = "2.0-unstable-2023-03-29";
2020-12-29 21:13:50 +00:00
src = fetchFromGitHub {
owner = "Sweets";
repo = "tiramisu";
# FIXME: use the current HEAD commit as upstream has no releases since 2021
rev = "5dddd83abd695bfa15640047a97a08ff0a8d9f9b";
hash = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI=";
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
};
}