forked from mirrors/nixpkgs
biscuit-cli: init at 0.2.0-next-pre20230103
This commit is contained in:
parent
550e897a48
commit
b094f644af
1080
pkgs/tools/security/biscuit-cli/Cargo.lock
generated
Normal file
1080
pkgs/tools/security/biscuit-cli/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
25
pkgs/tools/security/biscuit-cli/default.nix
Normal file
25
pkgs/tools/security/biscuit-cli/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue