biscuit-cli: init at 0.2.0-next-pre20230103

This commit is contained in:
Shea Levy 2023-03-09 10:17:05 -05:00
parent 550e897a48
commit b094f644af
No known key found for this signature in database
GPG key ID: 5C0BD6957D86FE27
3 changed files with 1107 additions and 0 deletions

1080
pkgs/tools/security/biscuit-cli/Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,25 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "biscuit-cli";
version = "0.2.0-next-pre20230103";
src = fetchFromGitHub {
owner = "biscuit-auth";
repo = "biscuit-cli";
rev = "0ecf1ec4c98a90b1bf3614558a029b47c57288df";
sha256 = "sha256-ADJWqx70IwuvCBeK9rb9WBIsD+oQROQSduSQ8Bu8mfk=";
};
cargoLock = {
outputHashes."biscuit-auth-3.0.0-alpha4" = "sha256-4SzOupoD33D0KHZyVLriGzUHy9XXnWK1pbgqOjJH4PI=";
lockFile = ./Cargo.lock;
};
meta = {
description = "CLI to generate and inspect biscuit tokens";
homepage = "https://www.biscuitsec.org/";
maintainers = [ lib.maintainers.shlevy ];
license = lib.licenses.bsd3;
};
}

View file

@ -2385,6 +2385,8 @@ with pkgs;
electron = electron_13;
};
biscuit-cli = callPackage ../tools/security/biscuit-cli { };
bit = callPackage ../applications/version-management/git-and-tools/bit { };
bitwarden = callPackage ../tools/security/bitwarden { };