From ca1b61cac8056e5d0fc87551d8c8ca939b25f62f Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 5 Jun 2024 09:59:41 +0200 Subject: [PATCH 1/2] kitty-themes: unstable-2024-04-23 -> 0-unstable-2024-05-28 --- pkgs/applications/terminal-emulators/kitty/themes.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/terminal-emulators/kitty/themes.nix b/pkgs/applications/terminal-emulators/kitty/themes.nix index facfa34cf140..1e5ce0b3f402 100644 --- a/pkgs/applications/terminal-emulators/kitty/themes.nix +++ b/pkgs/applications/terminal-emulators/kitty/themes.nix @@ -5,13 +5,13 @@ stdenvNoCC.mkDerivation { pname = "kitty-themes"; - version = "unstable-2024-04-23"; + version = "0-unstable-2024-05-28"; src = fetchFromGitHub { owner = "kovidgoyal"; repo = "kitty-themes"; - rev = "8026ce6ec70a0a67fedd02319e6fa39d36bbc1d1"; - hash = "sha256-RN4YTcsVRg+3c+SEtKkJC8EvuNiiToduASMy/Rr+ZwA="; + rev = "891ca835de3112e69f1dfc87fd6cfab354a30f25"; + hash = "sha256-Ah5qR5tMy1JlmT4rgYdHags4ZuuAOz1wzoByjo8T8TI="; }; dontConfigure = true; From 9509a3b68c62449dfcdf28a9d1364eb9ff04b09c Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Wed, 5 Jun 2024 10:24:47 +0200 Subject: [PATCH 2/2] kitty-themes: add passthru update script --- pkgs/applications/terminal-emulators/kitty/themes.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/terminal-emulators/kitty/themes.nix b/pkgs/applications/terminal-emulators/kitty/themes.nix index 1e5ce0b3f402..ba4ba0756b61 100644 --- a/pkgs/applications/terminal-emulators/kitty/themes.nix +++ b/pkgs/applications/terminal-emulators/kitty/themes.nix @@ -1,6 +1,7 @@ { lib , stdenvNoCC , fetchFromGitHub +, unstableGitUpdater }: stdenvNoCC.mkDerivation { @@ -26,6 +27,10 @@ stdenvNoCC.mkDerivation { runHook postInstall ''; + passthru.updateScript = unstableGitUpdater { + hardcodeZeroVersion = true; + }; + meta = { homepage = "https://github.com/kovidgoyal/kitty-themes"; description = "Themes for the kitty terminal emulator";