3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/keybase/default.nix

28 lines
719 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "keybase-${version}";
2018-03-01 07:43:38 +00:00
version = "1.0.44";
goPackagePath = "github.com/keybase/client";
subPackages = [ "go/keybase" ];
dontRenameImports = true;
src = fetchFromGitHub {
2017-03-16 01:59:08 +00:00
owner = "keybase";
repo = "client";
rev = "v${version}";
2018-03-01 07:43:38 +00:00
sha256 = "1np8fk15wwqkswzcyygga52r74dp101ny63i3m1wypgfky4hvsbb";
};
buildFlags = [ "-tags production" ];
meta = with stdenv.lib; {
homepage = https://www.keybase.io/;
description = "The Keybase official command-line utility and service.";
platforms = platforms.linux ++ platforms.darwin;
2017-08-19 20:32:54 +01:00
maintainers = with maintainers; [ carlsverre np rvolosatovs ];
};
}