about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJohn Titor2024-04-08 09:31:17 +0530
committerJohn Titor2024-04-12 19:58:32 +0530
commit2b54af67e1888830d81ad08a4cce1b8318f04356 (patch)
tree3d0c3676597546d5921ff3877c4703a6ffd9b639 /pkgs
parent61921f8df967be0b6382fd9ed2e7eea8141084ce (diff)
tiramisu: cleanup
add comments why we have to use the current HEAD commit
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/tiramisu/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/misc/tiramisu/default.nix b/pkgs/applications/misc/tiramisu/default.nix
index 2da7c99bceee..4a123be328c9 100644
--- a/pkgs/applications/misc/tiramisu/default.nix
+++ b/pkgs/applications/misc/tiramisu/default.nix
@@ -2,13 +2,15 @@
 
 stdenv.mkDerivation rec {
   pname = "tiramisu";
+  # FIXME: once a newer release in upstream is available
   version = "2.0-unstable-2023-03-29";
 
   src = fetchFromGitHub {
     owner = "Sweets";
-    repo = pname;
+    repo = "tiramisu";
+    # FIXME: use the current HEAD commit as upstream has no releases since 2021
     rev = "5dddd83abd695bfa15640047a97a08ff0a8d9f9b";
-    sha256 = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI=";
+    hash = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI=";
   };
 
   buildInputs = [ glib ];