Merge pull request #293945 from Grafcube/update-cargo-leptos-0.2.15

cargo-leptos: 0.2.5 -> 0.2.15
This commit is contained in:
Nick Cao
2024-03-07 09:53:39 -05:00
committed by GitHub
2 changed files with 5 additions and 3487 deletions
File diff suppressed because it is too large Load Diff
@@ -15,18 +15,16 @@ let
in
rustPlatform.buildRustPackage rec {
pname = "cargo-leptos";
version = "0.2.5";
version = "0.2.15";
src = fetchFromGitHub {
owner = "leptos-rs";
repo = pname;
rev = version;
hash = "sha256-veRhTruM+Nw2rerzXC/kpi2Jr8mMMBLqOM2YBCpFePU=";
rev = "v${version}";
hash = "sha256-ojLAdudgset/5ynOoue8oJ5L3Z43GHDQBf0xnpkKDOg=";
};
cargoLock = {
lockFile = ./Cargo.lock;
};
cargoHash = "sha256-OjA1M/PcMxQ7MvBf6hIn+TSCnFvIwQ+08xPcY+jWs9s=";
buildInputs = optionals isDarwin [
SystemConfiguration
@@ -41,7 +39,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "A build tool for the Leptos web framework";
homepage = "https://github.com/leptos-rs/cargo-leptos";
changelog = "https://github.com/leptos-rs/cargo-leptos/releases/tag/${version}";
changelog = "https://github.com/leptos-rs/cargo-leptos/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ benwis ];
};