cargo-deny: 0.18.5 -> 0.18.6

This commit is contained in:
liberodark
2025-11-28 11:16:47 +01:00
parent 3346f629aa
commit 56ee3f7d38
+7 -7
View File
@@ -6,18 +6,18 @@
zstd,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
pname = "cargo-deny";
version = "0.18.5";
version = "0.18.6";
src = fetchFromGitHub {
owner = "EmbarkStudios";
repo = "cargo-deny";
tag = version;
hash = "sha256-FYVMeq/728uXayGbDKVK2kZNkf9tdXET+uEorJ6WNto=";
tag = finalAttrs.version;
hash = "sha256-w3SFU0FSX7nmqzyxey0erJfq8YsFEEukfNhDg5g0I04=";
};
cargoHash = "sha256-QfylAFybghBJzxgtrKIPGz/6EM1DlNJ/uJIEtMXpTbo=";
cargoHash = "sha256-yrVSXrxfJ4vB85rARq6g71AswRMXhn25tfYZqXm1zoo=";
nativeBuildInputs = [
pkg-config
@@ -38,7 +38,7 @@ rustPlatform.buildRustPackage rec {
description = "Cargo plugin for linting your dependencies";
mainProgram = "cargo-deny";
homepage = "https://github.com/EmbarkStudios/cargo-deny";
changelog = "https://github.com/EmbarkStudios/cargo-deny/blob/${version}/CHANGELOG.md";
changelog = "https://github.com/EmbarkStudios/cargo-deny/blob/${finalAttrs.version}/CHANGELOG.md";
license = with lib.licenses; [
asl20 # or
mit
@@ -48,4 +48,4 @@ rustPlatform.buildRustPackage rec {
jk
];
};
}
})