2019-04-10 03:05:24 -07:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-04-11 13:33:28 -07:00
|
|
|
pname = "cargo-xbuild";
|
2019-06-13 20:24:26 -07:00
|
|
|
version = "0.5.12";
|
2019-04-10 03:05:24 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rust-osdev";
|
2019-04-11 13:33:28 -07:00
|
|
|
repo = pname;
|
2019-04-10 03:05:24 -07:00
|
|
|
rev = "v${version}";
|
2019-06-13 20:24:26 -07:00
|
|
|
sha256 = "1vjsss2zrja4kpr83vw6g0hf9xdx658wjhdiymzndbcf32qrx7x1";
|
2019-04-10 03:05:24 -07:00
|
|
|
};
|
|
|
|
|
2019-05-24 18:49:23 -07:00
|
|
|
cargoSha256 = "1r9i79lymfwpbcx2lp509v435qpkl9bqly1ya369p41n5yprrcjv";
|
2019-04-10 03:05:24 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Automatically cross-compiles the sysroot crates core, compiler_builtins, and alloc";
|
2019-06-13 20:24:26 -07:00
|
|
|
homepage = "https://github.com/rust-osdev/cargo-xbuild";
|
2019-04-10 03:05:24 -07:00
|
|
|
license = with licenses; [ mit asl20 ];
|
2019-05-24 18:49:23 -07:00
|
|
|
maintainers = with maintainers; [ xrelkd ];
|
2019-04-10 03:05:24 -07:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|