nixpkgs/pkgs/tools/security/gpg-tui/default.nix
2021-08-08 12:52:39 +00:00

54 lines
955 B
Nix

{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, gpgme
, libgpgerror
, libxcb
, python3
, AppKit
, Foundation
, libiconv
, libobjc
, libresolv
}:
rustPlatform.buildRustPackage rec {
pname = "gpg-tui";
version = "0.7.4";
src = fetchFromGitHub {
owner = "orhun";
repo = "gpg-tui";
rev = "v${version}";
sha256 = "sha256-PJLiP8o4HMkaHMrsnObpUdGtKLxIuXZhxva34U26i40=";
};
cargoSha256 = "sha256-6fHMchoJO5Tss6kFTulDmI4aXS3YF5k6RqEWQbh5mNc=";
nativeBuildInputs = [
gpgme # for gpgme-config
libgpgerror # for gpg-error-config
python3
];
buildInputs = [
gpgme
libgpgerror
libxcb
] ++ lib.optionals stdenv.isDarwin [
AppKit
Foundation
libiconv
libobjc
libresolv
];
meta = with lib; {
description = "Terminal user interface for GnuPG";
homepage = "https://github.com/orhun/gpg-tui";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}