Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
57 lines
1.0 KiB
Nix
57 lines
1.0 KiB
Nix
{
|
|
replaceVars,
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
gnupg,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "keybase";
|
|
version = "6.5.1";
|
|
|
|
modRoot = "go";
|
|
subPackages = [
|
|
"kbnm"
|
|
"keybase"
|
|
];
|
|
|
|
dontRenameImports = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "keybase";
|
|
repo = "client";
|
|
rev = "v${version}";
|
|
hash = "sha256-B3vedsxQM4FDZVpkMKR67DF7FtaTPhGIJ1e2lViKYzg=";
|
|
};
|
|
vendorHash = "sha256-uw1tiaYoMpMXCYt5bPL5OBbK09PJmAQYQDrDwuPShxU=";
|
|
|
|
patches = [
|
|
(replaceVars ./fix-paths-keybase.patch {
|
|
gpg = "${gnupg}/bin/gpg";
|
|
gpg2 = "${gnupg}/bin/gpg2";
|
|
})
|
|
];
|
|
tags = [ "production" ];
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.keybase.io/";
|
|
description = "Keybase official command-line utility and service";
|
|
mainProgram = "keybase";
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [
|
|
avaq
|
|
np
|
|
rvolosatovs
|
|
Br1ght0ne
|
|
shofius
|
|
ryand56
|
|
];
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|