c7e6337bd0
GitOrigin-RevId: 08e4dc3a907a6dfec8bb3bbf1540d8abbffea22b
68 lines
1.6 KiB
Nix
68 lines
1.6 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, bzip2
|
|
, xz
|
|
, zstd
|
|
, stdenv
|
|
, darwin
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-binstall";
|
|
version = "0.23.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cargo-bins";
|
|
repo = "cargo-binstall";
|
|
rev = "v${version}";
|
|
hash = "sha256-PB7EZMJ9wXVneLTc8wiZVxeyE/XybuwUvcVkN6q04lo=";
|
|
};
|
|
|
|
cargoHash = "sha256-SxQSzY31m3eTDO38jRpvzwmV9d6puIZ3DwBlC2Zb4b0=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
bzip2
|
|
xz
|
|
zstd
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.Security
|
|
];
|
|
|
|
buildNoDefaultFeatures = true;
|
|
buildFeatures = [
|
|
"fancy-no-backtrace"
|
|
"pkg-config"
|
|
"rustls"
|
|
"trust-dns"
|
|
"zstd-thin"
|
|
];
|
|
|
|
cargoBuildFlags = [ "-p" "cargo-binstall" ];
|
|
cargoTestFlags = [ "-p" "cargo-binstall" ];
|
|
|
|
checkFlags = [
|
|
# requires internet access
|
|
"--skip=download::test::test_and_extract"
|
|
"--skip=gh_api_client::test::test_gh_api_client_cargo_binstall_no_such_release"
|
|
"--skip=gh_api_client::test::test_gh_api_client_cargo_binstall_v0_20_1"
|
|
];
|
|
|
|
# remove cargo config so it can find the linker on aarch64-unknown-linux-gnu
|
|
postPatch = ''
|
|
rm .cargo/config
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A tool for installing rust binaries as an alternative to building from source";
|
|
homepage = "https://github.com/cargo-bins/cargo-binstall";
|
|
changelog = "https://github.com/cargo-bins/cargo-binstall/releases/tag/v${version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|