2023-10-22 19:05:58 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, darwin
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-xwin";
|
2024-07-23 12:51:45 +00:00
|
|
|
version = "0.17.3";
|
2023-10-22 19:05:58 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rust-cross";
|
|
|
|
repo = "cargo-xwin";
|
|
|
|
rev = "v${version}";
|
2024-07-23 12:51:45 +00:00
|
|
|
hash = "sha256-Lpcofb4yz1pR6dNJEnpkkCFdYjgt0qMzVP55kgKqjFA=";
|
2023-10-22 19:05:58 +00:00
|
|
|
};
|
|
|
|
|
2024-07-23 12:51:45 +00:00
|
|
|
cargoHash = "sha256-xVG1nET020rfMIjhIcCtNr9ZCj8SgQAvXePjyKSPjUs=";
|
2023-10-22 19:05:58 +00:00
|
|
|
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.Security
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Cross compile Cargo project to Windows MSVC target with ease";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "cargo-xwin";
|
2023-10-22 19:05:58 +00:00
|
|
|
homepage = "https://github.com/rust-cross/cargo-xwin";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ shivaraj-bh ];
|
|
|
|
};
|
|
|
|
}
|