forked from mirrors/nixpkgs
Merge pull request #262792 from shivaraj-bh/cargo-xwin
cargo-xwin: init at 0.14.8
This commit is contained in:
commit
19e7d302e8
|
@ -16112,6 +16112,12 @@
|
|||
fingerprint = "AB63 4CD9 3322 BD42 6231 F764 C404 1EA6 B326 33DE";
|
||||
}];
|
||||
};
|
||||
shivaraj-bh = {
|
||||
email = "sbh69840@gmail.com";
|
||||
name = "Shivaraj B H";
|
||||
github = "shivaraj-bh";
|
||||
githubId = 23645788;
|
||||
};
|
||||
shlevy = {
|
||||
email = "shea@shealevy.com";
|
||||
github = "shlevy";
|
||||
|
|
31
pkgs/by-name/ca/cargo-xwin/package.nix
Normal file
31
pkgs/by-name/ca/cargo-xwin/package.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, darwin
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cargo-xwin";
|
||||
version = "0.14.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rust-cross";
|
||||
repo = "cargo-xwin";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-VhpqmGhGBqB20ZteIwbd0GCIUltBGfBw7XF9lH7witA=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-e5QyaiQKlIzBwJE781BrhdVINacw0iniPywIsoMlCGg=";
|
||||
|
||||
buildInputs = lib.optionals stdenv.isDarwin [
|
||||
darwin.apple_sdk.frameworks.Security
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cross compile Cargo project to Windows MSVC target with ease";
|
||||
homepage = "https://github.com/rust-cross/cargo-xwin";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ shivaraj-bh ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue