tiramisu: cleanup
add comments why we have to use the current HEAD commit
This commit is contained in:
parent
61921f8df9
commit
2b54af67e1
1 changed files with 4 additions and 2 deletions
|
@ -2,13 +2,15 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "tiramisu";
|
pname = "tiramisu";
|
||||||
|
# FIXME: once a newer release in upstream is available
|
||||||
version = "2.0-unstable-2023-03-29";
|
version = "2.0-unstable-2023-03-29";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Sweets";
|
owner = "Sweets";
|
||||||
repo = pname;
|
repo = "tiramisu";
|
||||||
|
# FIXME: use the current HEAD commit as upstream has no releases since 2021
|
||||||
rev = "5dddd83abd695bfa15640047a97a08ff0a8d9f9b";
|
rev = "5dddd83abd695bfa15640047a97a08ff0a8d9f9b";
|
||||||
sha256 = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI=";
|
hash = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ glib ];
|
buildInputs = [ glib ];
|
||||||
|
|
Loading…
Reference in a new issue