nixpkgs/pkgs/tools/security/keybase/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, substituteAll, lib, buildGoPackage, fetchFromGitHub
, AVFoundation, AudioToolbox, ImageIO, CoreMedia
, Foundation, CoreGraphics, MediaToolbox
, gnupg
}:
buildGoPackage rec {
pname = "keybase";
2019-11-16 01:47:47 +01:00
version = "5.0.0";
goPackagePath = "github.com/keybase/client";
subPackages = [ "go/kbnm" "go/keybase" ];
dontRenameImports = true;
2019-07-04 03:32:05 +02:00
src = fetchFromGitHub {
owner = "keybase";
repo = "client";
rev = "v${version}";
2019-11-16 01:47:47 +01:00
sha256 = "0cxxqmgp82qi2b1fljyfa38is94y8ghb2pd31nbyh8y4wnmi0x1s";
};
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 ];
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 21:32:54 +02:00
maintainers = with maintainers; [ carlsverre np rvolosatovs ];
license = licenses.bsd3;
};
}