Skip to content

Commit

Permalink
Merge pull request #107917 from wishfort36/tiramisu
Browse files Browse the repository at this point in the history
tiramisu: init at 1.0
  • Loading branch information
prusnak committed Dec 30, 2020
2 parents d5deb8c + 06e80a5 commit 29b658e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/applications/misc/tiramisu/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{ stdenv, fetchFromGitHub, pkg-config, glib }:

stdenv.mkDerivation rec {
pname = "tiramisu";
version = "1.0";

src = fetchFromGitHub {
owner = "Sweets";
repo = pname;
rev = version;
sha256 = "0aw17riwgrhsmcndzh7sw2zw8xvn3d203c2gcrqi9nk5pa7fwp9m";
};

postPatch = ''
sed -i 's/printf(element_delimiter)/printf("%s", element_delimiter)/' src/output.c
'';

buildInputs = [ glib ];

nativeBuildInputs = [ pkg-config ];

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

meta = with stdenv.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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22090,6 +22090,8 @@ in

swaylock-effects = callPackage ../applications/window-managers/sway/lock-effects.nix { };

tiramisu = callPackage ../applications/misc/tiramisu { };

waybar = callPackage ../applications/misc/waybar {};

hikari = callPackage ../applications/window-managers/hikari { };
Expand Down

0 comments on commit 29b658e

Please sign in to comment.