nixpkgs/pkgs/applications/misc/tiramisu/default.nix
John Titor 61921f8df9
tiramisu: 2.0.20211107 -> 2.0-unstable-2023-03-29
Use a commit since the last release to get the latest changes
since latest changes are not released yet
as per https://github.com/NixOS/nixpkgs/issues/217845
2024-04-11 23:04:36 +05:30

34 lines
944 B
Nix

{ lib, stdenv, fetchFromGitHub, pkg-config, glib, vala }:
stdenv.mkDerivation rec {
pname = "tiramisu";
version = "2.0-unstable-2023-03-29";
src = fetchFromGitHub {
owner = "Sweets";
repo = pname;
rev = "5dddd83abd695bfa15640047a97a08ff0a8d9f9b";
sha256 = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI=";
};
buildInputs = [ glib ];
nativeBuildInputs = [ pkg-config vala ];
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Desktop notifications, the UNIX way";
longDescription = ''
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.
'';
homepage = "https://github.com/Sweets/tiramisu";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ wishfort36 moni ];
mainProgram = "tiramisu";
};
}