mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, asciidoctor
|
|
, botan2
|
|
, bzip2
|
|
, cmake
|
|
, fetchFromGitHub
|
|
, gnupg
|
|
, gtest
|
|
, json_c
|
|
, pkg-config
|
|
, python3
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rnp";
|
|
version = "0.16.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rnpgp";
|
|
repo = "rnp";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KHItrpuKXaLGF1mcpju/RJFnm2yPZyYq4eIoRGqf5Y8=";
|
|
};
|
|
|
|
buildInputs = [ zlib bzip2 json_c botan2 ];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_PREFIX=${placeholder "out"}"
|
|
"-DBUILD_SHARED_LIBS=on"
|
|
"-DBUILD_TESTING=on"
|
|
"-DDOWNLOAD_GTEST=off"
|
|
"-DDOWNLOAD_RUBYRNP=off"
|
|
];
|
|
|
|
nativeBuildInputs = [ asciidoctor cmake gnupg gtest pkg-config python3 ];
|
|
|
|
# NOTE: check-only inputs should ideally be moved to nativeCheckInputs, but it
|
|
# would fail during buildPhase.
|
|
# nativeCheckInputs = [ gtest python3 ];
|
|
|
|
outputs = [ "out" "lib" "dev" ];
|
|
|
|
preConfigure = ''
|
|
echo "v${version}" > version.txt
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/rnpgp/rnp";
|
|
description = "High performance C++ OpenPGP library, fully compliant to RFC 4880";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ ribose-jeffreylau ];
|
|
};
|
|
}
|