62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
rustup,
|
|
openssl,
|
|
stdenv,
|
|
makeWrapper,
|
|
gitUpdater,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-msrv";
|
|
version = "0.18.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "foresterre";
|
|
repo = "cargo-msrv";
|
|
tag = "v${version}";
|
|
sha256 = "sha256-dvCKi40c9PmM05MK+0VGWxny0ZA+9YO/M3zmv5Qv6b0=";
|
|
};
|
|
|
|
cargoHash = "sha256-cIyoGFIxtX4/Dn4RbtMB75WQj+UO44V182u6C5smgSw=";
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater {
|
|
rev-prefix = "v";
|
|
ignoredVersions = ".(rc|beta).*";
|
|
};
|
|
};
|
|
|
|
# Integration tests fail
|
|
doCheck = false;
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
makeWrapper
|
|
];
|
|
|
|
# Depends at run-time on having rustup in PATH
|
|
postInstall = ''
|
|
wrapProgram $out/bin/cargo-msrv --prefix PATH : ${lib.makeBinPath [ rustup ]};
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Cargo subcommand \"msrv\": assists with finding your minimum supported Rust version (MSRV)";
|
|
mainProgram = "cargo-msrv";
|
|
homepage = "https://github.com/foresterre/cargo-msrv";
|
|
license = with licenses; [
|
|
asl20 # or
|
|
mit
|
|
];
|
|
maintainers = with maintainers; [
|
|
otavio
|
|
matthiasbeyer
|
|
];
|
|
};
|
|
}
|