mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
keybase-go: init at 1.0.16 (#17094)
Build the official keybase go client from source. The client includes both a CLI for performing keybase operations and a service which will start automatically when needed. Keybase is a service which combines social proof with encryption. Learn more at their site: http://keybase.io
This commit is contained in:
parent
c40a0b50f7
commit
b54009fdfb
2 changed files with 30 additions and 0 deletions
28
pkgs/tools/security/keybase/default.nix
Normal file
28
pkgs/tools/security/keybase/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "keybase-${version}";
|
||||
version = "1.0.16";
|
||||
rev = "v${version}";
|
||||
|
||||
goPackagePath = "github.com/keybase/client";
|
||||
subPackages = [ "go/keybase" ];
|
||||
|
||||
dontRenameImports = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "keybase";
|
||||
repo = "client";
|
||||
inherit rev;
|
||||
sha256 = "0p62cqpfgx9b5kfnviqpig27i20yv9bg5mq61am5xrmkp68jk35b";
|
||||
};
|
||||
|
||||
buildFlags = [ "-tags production" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://www.keybase.io/;
|
||||
description = "The Keybase official command-line utility and service.";
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ carlsverre ];
|
||||
};
|
||||
}
|
|
@ -2172,6 +2172,8 @@ in
|
|||
|
||||
keybase = callPackage ../applications/misc/keybase { };
|
||||
|
||||
keybase-go = callPackage ../tools/security/keybase { };
|
||||
|
||||
keychain = callPackage ../tools/misc/keychain { };
|
||||
|
||||
keyfuzz = callPackage ../tools/inputmethods/keyfuzz { };
|
||||
|
|
Loading…
Reference in a new issue