python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / gpg-tui / default.nix
blob4ab4d468d068c5a23f8c5e6a13fa9eb2a70e0b7a
1 { lib
2 , stdenv
3 , rustPlatform
4 , fetchFromGitHub
5 , gpgme
6 , libgpg-error
7 , libxcb
8 , libxkbcommon
9 , python3
10 , AppKit
11 , Foundation
12 , libiconv
13 , libobjc
14 , libresolv
17 rustPlatform.buildRustPackage rec {
18   pname = "gpg-tui";
19   version = "0.9.1";
21   src = fetchFromGitHub {
22     owner = "orhun";
23     repo = "gpg-tui";
24     rev = "v${version}";
25     hash = "sha256-eUUHH6bPfYjkHo7C7GWzewTpT8je7TQK9M8mTM5v59s=";
26   };
28   cargoHash = "sha256-GtSvDfG9lRUirm4d6PSaOBLTHZJT2PH0Sx/9GVquX5M=";
30   nativeBuildInputs = [
31     gpgme # for gpgme-config
32     libgpg-error # for gpg-error-config
33     python3
34   ];
36   buildInputs = [
37     gpgme
38     libgpg-error
39     libxcb
40     libxkbcommon
41   ] ++ lib.optionals stdenv.isDarwin [
42     AppKit
43     Foundation
44     libiconv
45     libobjc
46     libresolv
47   ];
49   meta = with lib; {
50     description = "Terminal user interface for GnuPG";
51     homepage = "https://github.com/orhun/gpg-tui";
52     changelog = "https://github.com/orhun/gpg-tui/blob/${src.rev}/CHANGELOG.md";
53     license = licenses.mit;
54     maintainers = with maintainers; [ dotlambda ];
55   };