mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-14 06:00:33 +03:00
jwtinfo: init at 0.4.4 (#337694)
This commit is contained in:
commit
ebbbac073b
1 changed files with 30 additions and 0 deletions
30
pkgs/by-name/jw/jwtinfo/package.nix
Normal file
30
pkgs/by-name/jw/jwtinfo/package.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
}:
|
||||
let
|
||||
pname = "jwtinfo";
|
||||
version = "0.4.4";
|
||||
in
|
||||
rustPlatform.buildRustPackage {
|
||||
inherit pname version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lmammino";
|
||||
repo = "jwtinfo";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-FDN9K7KnMro2BluHB7I0HTDdT9YXxi8UcOoBhKx/5dA=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-iGvwuLiF8yGb4IxBxGH0M79SlNqZ5lpsXTNiVT7VGrU=";
|
||||
|
||||
meta = {
|
||||
description = "Command-line tool to get information about JWTs";
|
||||
homepage = "https://github.com/lmammino/jwtinfo";
|
||||
changelog = "https://github.com/lmammino/jwtinfo/releases/tag/v${version}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
|
||||
mainProgram = "jwtinfo";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue