cargo-leptos: 0.2.28 -> 0.2.35

cargo-leptos: 0.2.28 -> 0.2.35

cargo-leptos: fix darwin

cargo-leptos: remove vendored-openssl

cargo-leptos: fix idmail build

x

cargo-leptos 2

cargo-leptos

remove idmail change

revert idmail
This commit is contained in:
adamjhf 2025-05-21 11:56:28 +00:00
parent 3c5a6442dd
commit 20b282da75

View file

@ -1,21 +1,37 @@
{ {
fetchFromGitHub, fetchFromGitHub,
lib, lib,
stdenv,
rustPlatform, rustPlatform,
pkg-config,
openssl,
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "cargo-leptos"; pname = "cargo-leptos";
version = "0.2.28"; version = "0.2.35";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "leptos-rs"; owner = "leptos-rs";
repo = "cargo-leptos"; repo = "cargo-leptos";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-SjpfM963Zux+H5QhK8prvDLuI56fP5PqX5gcVbthRx4="; hash = "sha256-CNktytEm6+5QTPAlxNz07+s7gue9dA5zZM82YQOWFSw=";
}; };
useFetchCargoVendor = true; useFetchCargoVendor = true;
cargoHash = "sha256-Da9ei4yAOfhSQmQgrUDZCmMeJXTfGnYhI1+L0JT/ECs="; cargoHash = "sha256-O/JyB47UP6rLeAG1rt1dXhaKfZ71QPg7qAeciHAvrAk=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
env =
{
OPENSSL_NO_VENDOR = 1;
}
// lib.optionalAttrs stdenv.hostPlatform.isDarwin {
# Fix for C++ compiler version on darwin for wasm-opt
CRATE_CC_NO_DEFAULTS = 1;
};
# https://github.com/leptos-rs/cargo-leptos#dependencies # https://github.com/leptos-rs/cargo-leptos#dependencies
buildFeatures = [ "no_downloads" ]; # cargo-leptos will try to install missing dependencies on its own otherwise buildFeatures = [ "no_downloads" ]; # cargo-leptos will try to install missing dependencies on its own otherwise