lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cargo-tauri_1: 1.8.1 -> 1.6.6

This appears to be a downgrade, but is actually a upgrade!

Previously this package tracked the main `tauri` crate, and not the
actual CLI. Oops.

Diff: https://github.com/tauri-apps/tauri/compare/tauri-v1.8.1...tauri-cli-v1.6.6

Changelog: https://github.com/tauri-apps/tauri/releases/tag/tauri-cli-v1.6.6

+7 -11
+7 -11
pkgs/by-name/ca/cargo-tauri_1/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 bzip2, 5 - fetchFromGitHub, 6 5 pkg-config, 7 6 rustPlatform, 8 7 xz, ··· 11 10 }: 12 11 13 12 cargo-tauri.overrideAttrs ( 14 - newAttrs: oldAttrs: { 15 - version = "1.8.1"; 13 + finalAttrs: oldAttrs: { 14 + version = "1.6.6"; 16 15 17 - src = fetchFromGitHub { 18 - owner = "tauri-apps"; 19 - repo = "tauri"; 20 - rev = "tauri-v${newAttrs.version}"; 21 - hash = "sha256-z8dfiLghN6m95PLCMDgpBMNo+YEvvsGN9F101fAcVF4="; 16 + src = oldAttrs.src.override { 17 + hash = "sha256-UE/mJ0WdbVT4E1YuUCtu80UB+1WR+KRWs+4Emy3Nclc="; 22 18 }; 23 19 24 20 # Manually specify the sourceRoot since this crate depends on other crates in the workspace. Relevant info at 25 21 # https://discourse.nixos.org/t/difficulty-using-buildrustpackage-with-a-src-containing-multiple-cargo-workspaces/10202 26 - sourceRoot = "${newAttrs.src.name}/tooling/cli"; 22 + sourceRoot = "${finalAttrs.src.name}/tooling/cli"; 27 23 28 24 cargoDeps = rustPlatform.fetchCargoVendor { 29 - inherit (newAttrs) 25 + inherit (finalAttrs) 30 26 pname 31 27 version 32 28 src 33 29 sourceRoot 34 30 ; 35 - hash = "sha256-t5sR02qC06H7A2vukwyZYKA2XMVUzJrgIOYuNSf42mE="; 31 + hash = "sha256-kAaq6Kam3e5n8569Y4zdFEiClI8q97XFX1hBD7NkUqw="; 36 32 }; 37 33 38 34 nativeBuildInputs = oldAttrs.nativeBuildInputs or [ ] ++ [ pkg-config ];