3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/jwt-cli/default.nix

32 lines
984 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, fetchpatch }:
2020-01-10 14:44:09 +00:00
rustPlatform.buildRustPackage rec {
pname = "jwt-cli";
2022-01-15 09:00:03 +00:00
version = "5.0.1";
2020-01-10 14:44:09 +00:00
src = fetchFromGitHub {
owner = "mike-engel";
repo = pname;
rev = version;
2022-01-15 09:00:03 +00:00
sha256 = "08yynwmn1kzanabiqzysyk9jbn0zyjjlilj4b4j5m29hfykq1jvf";
2020-01-10 14:44:09 +00:00
};
2022-01-15 09:00:03 +00:00
cargoSha256 = "19rbmiy71hgybzfwpz4msqqgl98qv9c3x06mjcpmixq4qhgxz616";
2020-09-10 01:56:36 +01:00
2021-01-15 09:19:50 +00:00
buildInputs = lib.optional stdenv.isDarwin Security;
2020-01-12 14:11:17 +00:00
2020-09-16 22:20:16 +01:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/jwt --version > /dev/null
$out/bin/jwt decode eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c \
| grep -q 'John Doe'
'';
2020-09-16 22:20:16 +01:00
meta = with lib; {
2020-01-10 14:44:09 +00:00
description = "Super fast CLI tool to decode and encode JWTs";
homepage = "https://github.com/mike-engel/jwt-cli";
license = with licenses; [ mit ];
maintainers = with maintainers; [ rycee ];
};
}