File tree Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Expand file tree Collapse file tree 1 file changed +8
-10
lines changed Original file line number Diff line number Diff line change 77 vala ,
88} :
99
10- stdenv . mkDerivation rec {
10+ stdenv . mkDerivation ( finalAttrs : {
1111 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" ;
1413
1514 src = fetchFromGitHub {
1615 owner = "Sweets" ;
1716 repo = "tiramisu" ;
18- # FIXME: use the current HEAD commit as upstream has no releases since 2021
19- rev = "5dddd83abd695bfa15640047a97a08ff0a8d9f9b" ;
17+ tag = finalAttrs . version ;
2018 hash = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI=" ;
2119 } ;
2220
@@ -29,20 +27,20 @@ stdenv.mkDerivation rec {
2927
3028 makeFlags = [ "PREFIX=$(out)" ] ;
3129
32- meta = with lib ; {
30+ meta = {
3331 description = "Desktop notifications, the UNIX way" ;
3432 longDescription = ''
3533 tiramisu is a notification daemon based on dunst that outputs notifications
3634 to STDOUT in order to allow the user to process notifications any way they
3735 prefer.
3836 '' ;
3937 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 ; [
4341 wishfort36
4442 moni
4543 ] ;
4644 mainProgram = "tiramisu" ;
4745 } ;
48- }
46+ } )
You can’t perform that action at this time.
0 commit comments