Skip to content

Commit

Permalink
tiramisu: 2.0-unstable-2023-03-29 -> 2.0.20240610
Browse files Browse the repository at this point in the history
  • Loading branch information
wishfort36 authored and farlusiva committed Jan 6, 2025
1 parent 88a8112 commit 38dd709
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions pkgs/by-name/ti/tiramisu/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,14 @@
vala,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "tiramisu";
# FIXME: once a newer release in upstream is available
version = "2.0-unstable-2023-03-29";
version = "2.0.20240610";

src = fetchFromGitHub {
owner = "Sweets";
repo = "tiramisu";
# FIXME: use the current HEAD commit as upstream has no releases since 2021
rev = "5dddd83abd695bfa15640047a97a08ff0a8d9f9b";
repo = finalAttrs.pname;
tag = finalAttrs.version;
hash = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI=";
};

Expand All @@ -29,20 +27,20 @@ stdenv.mkDerivation rec {

makeFlags = [ "PREFIX=$(out)" ];

meta = with lib; {
meta = {
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; [
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [
wishfort36
moni
];
mainProgram = "tiramisu";
};
}
})

0 comments on commit 38dd709

Please sign in to comment.