2019-10-17 14:53:45 +01:00
|
|
|
{ stdenv, substituteAll, lib, buildGoPackage, fetchFromGitHub
|
2018-11-07 18:56:56 +00:00
|
|
|
, AVFoundation, AudioToolbox, ImageIO, CoreMedia
|
|
|
|
, Foundation, CoreGraphics, MediaToolbox
|
2019-10-17 14:53:45 +01:00
|
|
|
, gnupg
|
2018-11-07 18:56:56 +00:00
|
|
|
}:
|
2016-07-19 11:34:51 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "keybase";
|
2020-03-20 17:02:14 +00:00
|
|
|
version = "5.3.1";
|
2016-07-19 11:34:51 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/keybase/client";
|
2019-11-21 13:59:27 +00:00
|
|
|
subPackages = [ "go/kbnm" "go/keybase" ];
|
2016-07-19 11:34:51 +01:00
|
|
|
|
|
|
|
dontRenameImports = true;
|
|
|
|
|
2019-07-04 02:32:05 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "keybase";
|
|
|
|
repo = "client";
|
|
|
|
rev = "v${version}";
|
2020-03-20 17:02:14 +00:00
|
|
|
sha256 = "1a1h2c8jr4r20w4gyvyrpsslmh69bl8syl3jbr0fcr2kka7vqnzg";
|
2016-07-19 11:34:51 +01:00
|
|
|
};
|
|
|
|
|
2019-10-17 14:53:45 +01:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths-keybase.patch;
|
|
|
|
gpg = "${gnupg}/bin/gpg";
|
|
|
|
gpg2 = "${gnupg}/bin/gpg2";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ AVFoundation AudioToolbox ImageIO CoreMedia Foundation CoreGraphics MediaToolbox ];
|
2016-07-19 11:34:51 +01:00
|
|
|
buildFlags = [ "-tags production" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://www.keybase.io/;
|
|
|
|
description = "The Keybase official command-line utility and service.";
|
2017-09-24 17:41:32 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2019-12-11 21:54:17 +00:00
|
|
|
maintainers = with maintainers; [ carlsverre np rvolosatovs filalex77 ];
|
2019-11-17 18:46:13 +00:00
|
|
|
license = licenses.bsd3;
|
2016-07-19 11:34:51 +01:00
|
|
|
};
|
|
|
|
}
|