tiramisu: cleanup

add comments why we have to use the current HEAD commit
This commit is contained in:
John Titor 2024-04-08 09:31:17 +05:30
parent 61921f8df9
commit 2b54af67e1
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0
1 changed files with 4 additions and 2 deletions

View File

@ -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 ];