about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators
diff options
context:
space:
mode:
authorSigmanificient <edhyjox@gmail.com>2024-06-05 10:24:47 +0200
committerSigmanificient <edhyjox@gmail.com>2024-06-05 10:24:47 +0200
commit9509a3b68c62449dfcdf28a9d1364eb9ff04b09c (patch)
tree763820c390d2f36ed0cfc3325c36ec480878c755 /pkgs/applications/terminal-emulators
parentca1b61cac8056e5d0fc87551d8c8ca939b25f62f (diff)
kitty-themes: add passthru update script
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-rw-r--r--pkgs/applications/terminal-emulators/kitty/themes.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/terminal-emulators/kitty/themes.nix b/pkgs/applications/terminal-emulators/kitty/themes.nix
index 1e5ce0b3f4026..ba4ba0756b611 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";