tiramisu: 2.0-unstable-2023-03-29 -> 2.0.20240610 (#371038)

authored by Peder Bergebakken Sundt and committed by GitHub ebc074d8 5d06898f

+8 -10
+8 -10
pkgs/by-name/ti/tiramisu/package.nix
··· 7 vala, 8 }: 9 10 - stdenv.mkDerivation rec { 11 pname = "tiramisu"; 12 - # FIXME: once a newer release in upstream is available 13 - version = "2.0-unstable-2023-03-29"; 14 15 src = fetchFromGitHub { 16 owner = "Sweets"; 17 repo = "tiramisu"; 18 - # FIXME: use the current HEAD commit as upstream has no releases since 2021 19 - rev = "5dddd83abd695bfa15640047a97a08ff0a8d9f9b"; 20 hash = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI="; 21 }; 22 ··· 29 30 makeFlags = [ "PREFIX=$(out)" ]; 31 32 - meta = with lib; { 33 description = "Desktop notifications, the UNIX way"; 34 longDescription = '' 35 tiramisu is a notification daemon based on dunst that outputs notifications ··· 37 prefer. 38 ''; 39 homepage = "https://github.com/Sweets/tiramisu"; 40 - license = licenses.mit; 41 - platforms = platforms.linux; 42 - maintainers = with maintainers; [ 43 wishfort36 44 moni 45 ]; 46 mainProgram = "tiramisu"; 47 }; 48 - }
··· 7 vala, 8 }: 9 10 + stdenv.mkDerivation (finalAttrs: { 11 pname = "tiramisu"; 12 + version = "2.0.20240610"; 13 14 src = fetchFromGitHub { 15 owner = "Sweets"; 16 repo = "tiramisu"; 17 + tag = finalAttrs.version; 18 hash = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI="; 19 }; 20 ··· 27 28 makeFlags = [ "PREFIX=$(out)" ]; 29 30 + meta = { 31 description = "Desktop notifications, the UNIX way"; 32 longDescription = '' 33 tiramisu is a notification daemon based on dunst that outputs notifications ··· 35 prefer. 36 ''; 37 homepage = "https://github.com/Sweets/tiramisu"; 38 + license = lib.licenses.mit; 39 + platforms = lib.platforms.linux; 40 + maintainers = with lib.maintainers; [ 41 wishfort36 42 moni 43 ]; 44 mainProgram = "tiramisu"; 45 }; 46 + })