nixpkgs/pkgs/tools/security/keybase/default.nix
Rob Vermaas ef3cb5cc47
keybase: update to 1.0.30
(cherry picked from commit 06896f26489d71fee5460556eaea86fb123a8245)
2017-09-19 07:34:56 +00:00

28 lines
699 B
Nix

{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "keybase-${version}";
version = "1.0.30";
goPackagePath = "github.com/keybase/client";
subPackages = [ "go/keybase" ];
dontRenameImports = true;
src = fetchFromGitHub {
owner = "keybase";
repo = "client";
rev = "v${version}";
sha256 = "0vivc71xfi4y3ydd29b17qxzi10r3a1ppmjjws6vrs0gz58bz1j8";
};
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 np rvolosatovs ];
};
}