mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 17:38:56 +00:00
Merge branch 'biscuit-cli-master'
This commit is contained in:
commit
3347206667
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;
|
||||
};
|
||||
}
|
@ -2990,6 +2990,8 @@ with pkgs;
|
||||
electron = electron_13;
|
||||
};
|
||||
|
||||
biscuit-cli = callPackage ../tools/security/biscuit-cli { };
|
||||
|
||||
bitwarden = callPackage ../tools/security/bitwarden { };
|
||||
|
||||
inherit (nodePackages) bitwarden-cli;
|
||||
|
Loading…
Reference in New Issue
Block a user