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

33 lines
911 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, glib }:
2020-12-29 21:13:50 +00:00
2021-05-19 16:48:19 +00:00
stdenv.mkDerivation {
2020-12-29 21:13:50 +00:00
pname = "tiramisu";
2021-05-19 16:48:19 +00:00
version = "unstable-2021-05-20";
2020-12-29 21:13:50 +00:00
src = fetchFromGitHub {
owner = "Sweets";
2021-05-19 16:48:19 +00:00
repo = "tiramisu";
rev = "e53833d0b5b0ae41ceb7dc434d8e25818fe62291";
sha256 = "sha256-F4oaTOAQQfOkEXeBVbGH+0CHc9v9Ac08GyzHliOdAfc=";
2020-12-29 21:13:50 +00:00
};
buildInputs = [ glib ];
nativeBuildInputs = [ pkg-config ];
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;
2021-05-19 16:48:19 +00:00
maintainers = with maintainers; [ wishfort36 fortuneteller2k ];
2020-12-29 21:13:50 +00:00
};
}