From 61921f8df967be0b6382fd9ed2e7eea8141084ce Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Sun, 7 Apr 2024 23:41:48 +0530 Subject: [PATCH 1/2] tiramisu: 2.0.20211107 -> 2.0-unstable-2023-03-29 Use a commit since the last release to get the latest changes since latest changes are not released yet as per https://github.com/NixOS/nixpkgs/issues/217845 --- pkgs/applications/misc/tiramisu/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/tiramisu/default.nix b/pkgs/applications/misc/tiramisu/default.nix index 8624bded6641..2da7c99bceee 100644 --- a/pkgs/applications/misc/tiramisu/default.nix +++ b/pkgs/applications/misc/tiramisu/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "tiramisu"; - version = "2.0.20211107"; + version = "2.0-unstable-2023-03-29"; src = fetchFromGitHub { owner = "Sweets"; repo = pname; - rev = version; - sha256 = "1n1x1ybbwbanibw7b90k7v4cadagl41li17hz2l8s2sapacvq3mw"; + rev = "5dddd83abd695bfa15640047a97a08ff0a8d9f9b"; + sha256 = "sha256-owYk/YFwJbqO6/dbGKPE8SnmmH4KvH+o6uWptqQtpfI="; }; buildInputs = [ glib ]; From 2b54af67e1888830d81ad08a4cce1b8318f04356 Mon Sep 17 00:00:00 2001 From: John Titor <50095635+JohnRTitor@users.noreply.github.com> Date: Mon, 8 Apr 2024 09:31:17 +0530 Subject: [PATCH 2/2] tiramisu: cleanup add comments why we have to use the current HEAD commit --- pkgs/applications/misc/tiramisu/default.nix | 6 ++++-- 1 file 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 ];