tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cargo-tauri: 1.6.5 -> 1.6.6
R. Ryantm
2 years ago
cdc080bb
8036f1ff
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
rust
cargo-tauri
default.nix
+3
-3
pkgs/development/tools/rust/cargo-tauri/default.nix
···
17
17
in
18
18
rustPlatform.buildRustPackage rec {
19
19
pname = "tauri";
20
20
-
version = "1.6.5";
20
20
+
version = "1.6.6";
21
21
22
22
src = fetchFromGitHub {
23
23
owner = "tauri-apps";
24
24
repo = pname;
25
25
rev = "tauri-v${version}";
26
26
-
hash = "sha256-5Hz6vJaClZ6/6KVN11dSinb4xerf/3Qiq230H8+j5q8=";
26
26
+
hash = "sha256-RttKRAjkD12E8gvOum/ynHecsvrZWw3br3OzQuvutcA=";
27
27
};
28
28
29
29
# Manually specify the sourceRoot since this crate depends on other crates in the workspace. Relevant info at
30
30
# https://discourse.nixos.org/t/difficulty-using-buildrustpackage-with-a-src-containing-multiple-cargo-workspaces/10202
31
31
sourceRoot = "${src.name}/tooling/cli";
32
32
33
33
-
cargoHash = "sha256-eb33aBG3qcMqBVY9/gzEvodS2w5rqioPAmiEKBEJIEw=";
33
33
+
cargoHash = "sha256-vxLFw+tD6+IdV58A6nmFwuhcgbCBpcMfpej8VsBmJ1w=";
34
34
35
35
buildInputs = [ openssl ] ++ lib.optionals stdenv.isLinux [ glibc libsoup cairo gtk3 webkitgtk ]
36
36
++ lib.optionals stdenv.isDarwin [ CoreServices Security SystemConfiguration ];