56 lines
987 B
Nix
56 lines
987 B
Nix
{ lib
|
|
, stdenv
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, gpgme
|
|
, libgpgerror
|
|
, libxcb
|
|
, libxkbcommon
|
|
, python3
|
|
, AppKit
|
|
, Foundation
|
|
, libiconv
|
|
, libobjc
|
|
, libresolv
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "gpg-tui";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "orhun";
|
|
repo = "gpg-tui";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-UUfZd6wTBoOyBdkidzxa3Fyc3GjeGdCT0n7jKmhdNa0=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-yX/g/An06nx95IaxjfYVUofvDDS2ZjiNAZf3ivi6ZF0=";
|
|
|
|
nativeBuildInputs = [
|
|
gpgme # for gpgme-config
|
|
libgpgerror # for gpg-error-config
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
gpgme
|
|
libgpgerror
|
|
libxcb
|
|
libxkbcommon
|
|
] ++ 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 ];
|
|
};
|
|
}
|