mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
cargo-sonar: init at 1.3.0
This commit is contained in:
parent
9c15e8a5b1
commit
5d21053e35
1 changed files with 34 additions and 0 deletions
34
pkgs/by-name/ca/cargo-sonar/package.nix
Normal file
34
pkgs/by-name/ca/cargo-sonar/package.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitLab,
|
||||
versionCheckHook,
|
||||
nix-update-script,
|
||||
}:
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "cargo-sonar";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "woshilapin";
|
||||
repo = "cargo-sonar";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-f319hi6mrnlHTvsn7kN2wFHyamXtplLZ8A6TN0+H3jY=";
|
||||
};
|
||||
|
||||
useFetchCargoVendor = true;
|
||||
cargoHash = "sha256-KLw6kAR2pF5RFhRDfsL093K+jk3oiSHLZ2CQvrBuhWY=";
|
||||
|
||||
doInstallCheck = true;
|
||||
nativeInstallCheckInputs = [ versionCheckHook ];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Utility to produce some Sonar-compatible format from different Rust tools like cargo-clippy cargo-audit or cargo-outdated";
|
||||
mainProgram = "cargo-sonar";
|
||||
homepage = "https://gitlab.com/woshilapin/cargo-sonar";
|
||||
license = [ lib.licenses.mit ];
|
||||
maintainers = [ lib.maintainers.jonboh ];
|
||||
};
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue