nixpkgs/pkgs/tools/security/gpg-tui/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
1.0 KiB
Nix
Raw Normal View History

2021-05-31 21:49:52 +00:00
{ lib
2021-06-29 08:53:01 +00:00
, stdenv
2021-05-31 21:49:52 +00:00
, rustPlatform
, fetchFromGitHub
, gpgme
, libgpg-error
2021-05-31 21:49:52 +00:00
, libxcb
, libxkbcommon
2021-05-31 21:49:52 +00:00
, python3
2021-06-29 08:53:01 +00:00
, AppKit
, Foundation
, libiconv
, libobjc
, libresolv
2021-05-31 21:49:52 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "gpg-tui";
version = "0.9.0";
2021-05-31 21:49:52 +00:00
src = fetchFromGitHub {
owner = "orhun";
repo = "gpg-tui";
rev = "v${version}";
hash = "sha256-iIMpAAIw6djLNP9lnrHV7D198VcHspQP4OHcr2LNKOA=";
2021-05-31 21:49:52 +00:00
};
cargoHash = "sha256-xrv1tFzPReHDA+gr/RPCvSM7Sa7v8OKAEY+fSUjPT50=";
2021-05-31 21:49:52 +00:00
nativeBuildInputs = [
gpgme # for gpgme-config
libgpg-error # for gpg-error-config
2021-05-31 21:49:52 +00:00
python3
];
buildInputs = [
gpgme
libgpg-error
2021-05-31 21:49:52 +00:00
libxcb
libxkbcommon
2021-06-29 08:53:01 +00:00
] ++ lib.optionals stdenv.isDarwin [
AppKit
Foundation
libiconv
libobjc
libresolv
2021-05-31 21:49:52 +00:00
];
meta = with lib; {
description = "Terminal user interface for GnuPG";
homepage = "https://github.com/orhun/gpg-tui";
changelog = "https://github.com/orhun/gpg-tui/blob/${src.rev}/CHANGELOG.md";
2021-05-31 21:49:52 +00:00
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}