tauri-mobile: init at unstable-2023-04-25 (#228178)
This commit is contained in:
parent
a7b0ff0a0d
commit
f1f0ef95cc
2 changed files with 55 additions and 0 deletions
54
pkgs/development/tools/rust/tauri-mobile/default.nix
Normal file
54
pkgs/development/tools/rust/tauri-mobile/default.nix
Normal file
|
@ -0,0 +1,54 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, openssl
|
||||
, git
|
||||
, darwin
|
||||
, makeWrapper
|
||||
}:
|
||||
|
||||
let
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||
pname = "tauri-mobile";
|
||||
version = "unstable-2023-04-25";
|
||||
in
|
||||
rustPlatform.buildRustPackage {
|
||||
inherit pname version;
|
||||
src = fetchFromGitHub {
|
||||
owner = "tauri-apps";
|
||||
repo = pname;
|
||||
rev = "c2abaf54135bf65b1165a38d3b1d84e8d57f5d6c";
|
||||
sha256 = "sha256-WHyiswe64tkNhhgmHquv9YPLQAU1yTJ/KglTqEPBcOM=";
|
||||
};
|
||||
|
||||
# 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 = "source/tooling/cli";
|
||||
|
||||
cargoHash = "sha256-Kc1BikwUYSpPShRtAPbHCdfVzo6zwjiO3QeqRkO+WhY=";
|
||||
|
||||
preBuild = ''
|
||||
export HOME=$(mktemp -d)
|
||||
'';
|
||||
|
||||
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ CoreServices ];
|
||||
nativeBuildInputs = [ pkg-config git makeWrapper ];
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/share/
|
||||
# the directory created in the build process is .tauri-mobile, a hidden directory
|
||||
shopt -s dotglob
|
||||
for temp_dir in $HOME/*; do
|
||||
cp -R $temp_dir $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 ];
|
||||
};
|
||||
}
|
|
@ -16229,6 +16229,7 @@ with pkgs;
|
|||
cargo-unused-features = callPackage ../development/tools/rust/cargo-unused-features { };
|
||||
|
||||
cargo-tauri = callPackage ../development/tools/rust/cargo-tauri { };
|
||||
tauri-mobile = callPackage ../development/tools/rust/tauri-mobile { };
|
||||
|
||||
cargo-valgrind = callPackage ../development/tools/rust/cargo-valgrind { };
|
||||
cargo-vet = callPackage ../development/tools/rust/cargo-vet {
|
||||
|
|
Loading…
Reference in a new issue