lol

Merge pull request #157158 from 06kellyjac/cargo-deny

authored by

Sandro and committed by
GitHub
a3b53988 a67ad308

+4 -4
+4 -4
pkgs/development/tools/rust/cargo-deny/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "cargo-deny"; 14 - version = "0.11.0"; 14 + version = "0.11.1"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "EmbarkStudios"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "sha256-LYXwdOopQkgq7i4l8dqQFkNLB3r+CVRor4BVeoj0DPs="; 20 + sha256 = "sha256-LsRky7hc7mgx1iRpJZICmP/ofdfD9r3D5LURTqfI9Fo="; 21 21 }; 22 22 23 23 # enable pkg-config feature of zstd 24 24 cargoPatches = [ ./zstd-pkg-config.patch ]; 25 25 26 - cargoSha256 = "sha256-SdbDWw4GOvCTKN7vBjhLU5rhdVIpyO+AWaFbo06HXfU="; 26 + cargoSha256 = "sha256-7WGNaad00MqEM/OdUaLJ3McXlUQyQwPezbMbL+4se5A="; 27 27 28 28 nativeBuildInputs = [ pkg-config ]; 29 29 ··· 40 40 homepage = "https://github.com/EmbarkStudios/cargo-deny"; 41 41 changelog = "https://github.com/EmbarkStudios/cargo-deny/blob/${version}/CHANGELOG.md"; 42 42 license = with licenses; [ asl20 /* or */ mit ]; 43 - maintainers = with maintainers; [ figsoda matthiasbeyer ]; 43 + maintainers = with maintainers; [ figsoda matthiasbeyer jk ]; 44 44 }; 45 45 }