about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/gpg-tui/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/security/gpg-tui/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/security/gpg-tui/default.nix55
1 files changed, 55 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/security/gpg-tui/default.nix b/nixpkgs/pkgs/tools/security/gpg-tui/default.nix
new file mode 100644
index 000000000000..8e0fb95c7c43
--- /dev/null
+++ b/nixpkgs/pkgs/tools/security/gpg-tui/default.nix
@@ -0,0 +1,55 @@
+{ lib
+, stdenv
+, rustPlatform
+, fetchFromGitHub
+, gpgme
+, libgpg-error
+, libxcb
+, libxkbcommon
+, python3
+, AppKit
+, Foundation
+, libiconv
+, libobjc
+, libresolv
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "gpg-tui";
+  version = "0.8.3";
+
+  src = fetchFromGitHub {
+    owner = "orhun";
+    repo = "gpg-tui";
+    rev = "v${version}";
+    hash = "sha256-lqV09FEZAw1ir2cJr8ABhbgSoZoWnxhbxyA1HAufLQA=";
+  };
+
+  cargoHash = "sha256-RMF4/WJRcpHuXKMvDYAGaJxUazcpkQCpv//u5XOd9Dg=";
+
+  nativeBuildInputs = [
+    gpgme # for gpgme-config
+    libgpg-error # for gpg-error-config
+    python3
+  ];
+
+  buildInputs = [
+    gpgme
+    libgpg-error
+    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 ];
+  };
+}