2019-10-17 16:53:45 +03:00
|
|
|
{ stdenv, substituteAll, lib, buildGoPackage, fetchFromGitHub
|
2018-11-07 19:56:56 +01:00
|
|
|
, AVFoundation, AudioToolbox, ImageIO, CoreMedia
|
|
|
|
|
, Foundation, CoreGraphics, MediaToolbox
|
2019-10-17 16:53:45 +03:00
|
|
|
, gnupg
|
2018-11-07 19:56:56 +01:00
|
|
|
}:
|
2016-07-19 03:34:51 -07:00
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "keybase";
|
2020-04-28 10:41:58 +02:00
|
|
|
version = "5.4.2";
|
2016-07-19 03:34:51 -07:00
|
|
|
|
|
|
|
|
goPackagePath = "github.com/keybase/client";
|
2019-11-21 15:59:27 +02:00
|
|
|
subPackages = [ "go/kbnm" "go/keybase" ];
|
2016-07-19 03:34:51 -07:00
|
|
|
|
|
|
|
|
dontRenameImports = true;
|
|
|
|
|
|
2019-07-03 18:32:05 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "keybase";
|
|
|
|
|
repo = "client";
|
|
|
|
|
rev = "v${version}";
|
2020-04-28 10:41:58 +02:00
|
|
|
sha256 = "08lw5aw962f75xi42bwbgba94hiql2n2jnsxrkx84czi0ijs1wlr";
|
2016-07-19 03:34:51 -07:00
|
|
|
};
|
|
|
|
|
|
2019-10-17 16:53:45 +03: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 03:34:51 -07:00
|
|
|
buildFlags = [ "-tags production" ];
|
|
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://www.keybase.io/";
|
2016-07-19 03:34:51 -07:00
|
|
|
description = "The Keybase official command-line utility and service.";
|
2017-09-24 17:41:32 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2020-04-28 10:58:42 +02:00
|
|
|
maintainers = with maintainers; [ avaq carlsverre np rvolosatovs filalex77 ];
|
2019-11-17 20:46:13 +02:00
|
|
|
license = licenses.bsd3;
|
2016-07-19 03:34:51 -07:00
|
|
|
};
|
|
|
|
|
}
|