Commit 20b282da authored by adamjhf's avatar adamjhf
Browse files

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
parent 3c5a6442
Loading
Loading
Loading
Loading
+19 −3
Original line number Diff line number Diff line
{
  fetchFromGitHub,
  lib,
  stdenv,
  rustPlatform,
  pkg-config,
  openssl,
}:
rustPlatform.buildRustPackage rec {
  pname = "cargo-leptos";
  version = "0.2.28";
  version = "0.2.35";

  src = fetchFromGitHub {
    owner = "leptos-rs";
    repo = "cargo-leptos";
    rev = "v${version}";
    hash = "sha256-SjpfM963Zux+H5QhK8prvDLuI56fP5PqX5gcVbthRx4=";
    hash = "sha256-CNktytEm6+5QTPAlxNz07+s7gue9dA5zZM82YQOWFSw=";
  };

  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
  buildFeatures = [ "no_downloads" ]; # cargo-leptos will try to install missing dependencies on its own otherwise