Merge pull request #189010 from figsoda/cargo-semver-checks

cargo-semver-checks: init at 0.9.2
This commit is contained in:
Stanisław Pitucha 2022-08-31 10:59:49 +10:00 committed by GitHub
commit df0dda9792
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib
, rustPlatform
, fetchFromGitHub
, pkg-config
, libgit2
, openssl
, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-semver-checks";
version = "0.9.2";
src = fetchFromGitHub {
owner = "obi1kenobi";
repo = "cargo-semver-check";
rev = "v${version}";
sha256 = "0w5qmbjkbd7ss2a3xhx186bykb3ghk6z0dmbz5i06k3acdv52gi7";
};
cargoSha256 = "sha256-RDFKI++5274bquh4bao10PQbdTOoCWcmueajIm8SvTw=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libgit2 openssl ] ++ lib.optionals stdenv.isDarwin [
Security
];
checkFlags = [
# requires nightly version of cargo-rustdoc
"--skip=adapter::tests"
];
meta = with lib; {
description = "A tool to scan your Rust crate for semver violations";
homepage = "https://github.com/obi1kenobi/cargo-semver-check";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
};
}

View file

@ -14464,6 +14464,9 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
cargo-readme = callPackage ../development/tools/rust/cargo-readme {};
cargo-semver-checks = callPackage ../development/tools/rust/cargo-semver-checks {
inherit (darwin.apple_sdk.frameworks) Security;
};
cargo-sort = callPackage ../development/tools/rust/cargo-sort { };
cargo-spellcheck = callPackage ../development/tools/rust/cargo-spellcheck {
inherit (darwin.apple_sdk.frameworks) Security;