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