mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
60 lines
1.4 KiB
Nix
60 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
openssl,
|
|
git,
|
|
makeWrapper,
|
|
}:
|
|
|
|
let
|
|
pname = "cargo-mobile2";
|
|
version = "0.20.0";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
inherit pname version;
|
|
src = fetchFromGitHub {
|
|
owner = "tauri-apps";
|
|
repo = "cargo-mobile2";
|
|
rev = "cargo-mobile2-v${version}";
|
|
hash = "sha256-7/ol4Jb/2s007LeSMo6YYDT5vipsZZF6O4hfJ7ylHGg=";
|
|
};
|
|
|
|
# Manually specify the sourceRoot since this crate depends on other crates in the workspace. Relevant info at
|
|
# https://discourse.nixos.org/t/difficulty-using-buildrustpackage-with-a-src-containing-multiple-cargo-workspaces/10202
|
|
# sourceRoot = "${src.name}/tooling/cli";
|
|
|
|
useFetchCargoVendor = true;
|
|
cargoHash = "sha256-zSUT2zClpSlBDu6vgMv4TZn9Jp0Ych6EQKo1AwkSMXU=";
|
|
|
|
preBuild = ''
|
|
mkdir -p $out/share/
|
|
# during the install process tauri-mobile puts templates and commit information in CARGO_HOME
|
|
export CARGO_HOME=$out/share/
|
|
'';
|
|
|
|
buildInputs = [ openssl ];
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
git
|
|
makeWrapper
|
|
];
|
|
|
|
preFixup = ''
|
|
for bin in $out/bin/cargo-*; do
|
|
wrapProgram $bin \
|
|
--set CARGO_HOME "$out/share"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Rust on mobile made easy!";
|
|
homepage = "https://tauri.app/";
|
|
license = with licenses; [
|
|
asl20 # or
|
|
mit
|
|
];
|
|
maintainers = with maintainers; [ happysalada ];
|
|
};
|
|
}
|