about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2024-03-23 16:52:01 +0000
committerAdam Stephens <adam@valkor.net>2024-03-23 14:51:38 -0400
commitd98b73e56e2ea82f8ee1ef39b1d0f4b466bf2c47 (patch)
tree2088be8bbef31c88ccb844bb92711d2455686bbc /pkgs/applications
parent86de7cd867a32429dc1b4a687931f9675afcb746 (diff)
downloadnixlib-d98b73e56e2ea82f8ee1ef39b1d0f4b466bf2c47.tar
nixlib-d98b73e56e2ea82f8ee1ef39b1d0f4b466bf2c47.tar.gz
nixlib-d98b73e56e2ea82f8ee1ef39b1d0f4b466bf2c47.tar.bz2
nixlib-d98b73e56e2ea82f8ee1ef39b1d0f4b466bf2c47.tar.lz
nixlib-d98b73e56e2ea82f8ee1ef39b1d0f4b466bf2c47.tar.xz
nixlib-d98b73e56e2ea82f8ee1ef39b1d0f4b466bf2c47.tar.zst
nixlib-d98b73e56e2ea82f8ee1ef39b1d0f4b466bf2c47.zip
kitty: 0.33.0 -> 0.33.1
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/terminal-emulators/kitty/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/terminal-emulators/kitty/default.nix b/pkgs/applications/terminal-emulators/kitty/default.nix
index c12891b98e4f..790627e41db4 100644
--- a/pkgs/applications/terminal-emulators/kitty/default.nix
+++ b/pkgs/applications/terminal-emulators/kitty/default.nix
@@ -31,20 +31,20 @@
 with python3Packages;
 buildPythonApplication rec {
   pname = "kitty";
-  version = "0.33.0";
+  version = "0.33.1";
   format = "other";
 
   src = fetchFromGitHub {
     owner = "kovidgoyal";
     repo = "kitty";
     rev = "refs/tags/v${version}";
-    hash = "sha256-0bdDolaFbVI3CqcOtKFrvRqrKXIiSIfH5rxJgK5XssI=";
+    hash = "sha256-E6gFGgySXs2oCS4Ipevbr9aPWzF4tb4Arl4w+4lQ+wg=";
   };
 
   goModules = (buildGo122Module {
     pname = "kitty-go-modules";
     inherit src version;
-    vendorHash = "sha256-7301wHGCXUdfPFOhgLEJILmYxNohNm6H2zXGd9W11Wk=";
+    vendorHash = "sha256-ypSZHJpk9wTXLH9sbmaSQB28iOIpv2nDPlgweM0Ldhs=";
   }).goModules;
 
   buildInputs = [
@@ -234,7 +234,7 @@ buildPythonApplication rec {
   '';
 
   passthru = {
-    tests = lib.mkIf stdenv.isLinux {
+    tests = lib.optionalAttrs stdenv.isLinux {
       default = nixosTests.terminal-emulators.kitty;
     };
     updateScript = nix-update-script {};