about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorYt <raphael@megzari.com>2024-04-22 21:42:37 +0000
committerGitHub <noreply@github.com>2024-04-22 21:42:37 +0000
commit8b1e612c627bc555f5570b7d65a7283f28eb5ce8 (patch)
treebf0ea80c30ef418d71de505cbd28b17ef96ce983 /pkgs/development
parenta9bc168a6a29f92b7076593eb747907029a4f853 (diff)
parent07a93da00de5995a7ec97bb11e607bf1d6b45aa6 (diff)
Merge pull request #306064 from r-ryantm/auto-update/cargo-tauri
cargo-tauri: 1.6.1 -> 1.6.2
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/rust/cargo-tauri/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/rust/cargo-tauri/default.nix b/pkgs/development/tools/rust/cargo-tauri/default.nix
index 02a06edf5d238..a7737222d3480 100644
--- a/pkgs/development/tools/rust/cargo-tauri/default.nix
+++ b/pkgs/development/tools/rust/cargo-tauri/default.nix
@@ -17,20 +17,20 @@ let
 in
 rustPlatform.buildRustPackage rec {
   pname = "tauri";
-  version = "1.6.1";
+  version = "1.6.2";
 
   src = fetchFromGitHub {
     owner = "tauri-apps";
     repo = pname;
     rev = "tauri-v${version}";
-    hash = "sha256-P0/c9GTQRdErwE3/uuZpMqiTl/nFGSaHoWGRtBDjc8M=";
+    hash = "sha256-sqBZVCVJkgqCK5JcNcJ6kKxL26XGxOA1uDlOOt/+iDo=";
   };
 
   # Manually specify the sourceRoot since this crate depends on other crates in the workspace. Relevant info at
   # https://discourse.nixos.org/t/difficulty-using-buildrustpackage-with-a-src-containing-multiple-cargo-workspaces/10202
   sourceRoot = "${src.name}/tooling/cli";
 
-  cargoHash = "sha256-+uRjitfaSbjsO1yO5NL3gw+qjx4neiht3BDvWltogX0=";
+  cargoHash = "sha256-g1uDF7lL9dmZY5J8uNDAsA8dG5IVrV7MumN1w+fk1/8=";
 
   buildInputs = [ openssl ] ++ lib.optionals stdenv.isLinux [ glibc libsoup cairo gtk3 webkitgtk ]
     ++ lib.optionals stdenv.isDarwin [ CoreServices Security SystemConfiguration ];