python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / rnp / default.nix
blob7d96c4f60e2602061deddfbbf459399dc4852057
1 { lib
2 , stdenv
3 , asciidoctor
4 , botan2
5 , bzip2
6 , cmake
7 , fetchFromGitHub
8 , gnupg
9 , gtest
10 , json_c
11 , pkg-config
12 , python3
13 , zlib
16 stdenv.mkDerivation rec {
17   pname = "rnp";
18   version = "0.16.2";
20   src = fetchFromGitHub {
21     owner = "rnpgp";
22     repo = "rnp";
23     rev = "v${version}";
24     sha256 = "sha256-KHItrpuKXaLGF1mcpju/RJFnm2yPZyYq4eIoRGqf5Y8=";
25   };
27   buildInputs = [ zlib bzip2 json_c botan2 ];
29   cmakeFlags = [
30     "-DCMAKE_INSTALL_PREFIX=${placeholder "out"}"
31     "-DBUILD_SHARED_LIBS=on"
32     "-DBUILD_TESTING=on"
33     "-DDOWNLOAD_GTEST=off"
34     "-DDOWNLOAD_RUBYRNP=off"
35   ];
37   nativeBuildInputs = [ asciidoctor cmake gnupg gtest pkg-config python3 ];
39   # NOTE: check-only inputs should ideally be moved to checkInputs, but it
40   # would fail during buildPhase.
41   # checkInputs = [ gtest python3 ];
43   outputs = [ "out" "lib" "dev" ];
45   preConfigure = ''
46     echo "v${version}" > version.txt
47   '';
49   meta = with lib; {
50     homepage = "https://github.com/rnpgp/rnp";
51     description = "High performance C++ OpenPGP library, fully compliant to RFC 4880";
52     license = licenses.bsd2;
53     platforms = platforms.all;
54     maintainers = with maintainers; [ ribose-jeffreylau ];
55   };