2019-07-31 09:07:19 +01:00
|
|
|
{ stdenv, fetchFromGitLab, lib, darwin
|
|
|
|
, git, nettle, llvmPackages, cargo, rustc
|
|
|
|
, rustPlatform, pkgconfig, glib
|
|
|
|
, openssl, sqlite, capnproto
|
|
|
|
, ensureNewerSourcesForZipFilesHook, pythonSupport ? true, pythonPackages ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert pythonSupport -> pythonPackages != null;
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "sequoia";
|
2020-06-16 09:27:30 +01:00
|
|
|
version = "0.17.0";
|
2019-07-31 09:07:19 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "sequoia-pgp";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-06-16 09:27:30 +01:00
|
|
|
sha256 = "1rf9q67qmjfkgy6r3mz1h9ibfmc04r4j8nzacqv2l75x4mwvf6xb";
|
2019-07-31 09:07:19 +01:00
|
|
|
};
|
|
|
|
|
2020-06-16 09:27:30 +01:00
|
|
|
cargoSha256 = "074bbr7dfk8cqdarrjy4sm37f5jmv2l5gwwh3zcmy2wrfg7vi1h6";
|
2019-07-31 09:07:19 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
cargo
|
|
|
|
rustc
|
|
|
|
git
|
|
|
|
llvmPackages.libclang
|
|
|
|
llvmPackages.clang
|
|
|
|
ensureNewerSourcesForZipFilesHook
|
2020-03-29 09:23:57 +01:00
|
|
|
capnproto
|
2019-07-31 09:07:19 +01:00
|
|
|
] ++
|
|
|
|
lib.optionals pythonSupport [ pythonPackages.setuptools ]
|
|
|
|
;
|
|
|
|
|
|
|
|
checkInputs = lib.optionals pythonSupport [
|
|
|
|
pythonPackages.pytest
|
|
|
|
pythonPackages.pytestrunner
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
openssl
|
|
|
|
sqlite
|
|
|
|
nettle
|
2020-03-29 09:23:57 +01:00
|
|
|
] ++ lib.optionals pythonSupport [ pythonPackages.python pythonPackages.cffi ]
|
2019-07-31 09:07:19 +01:00
|
|
|
++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]
|
|
|
|
;
|
|
|
|
|
|
|
|
makeFlags = [
|
2019-09-03 17:38:57 +01:00
|
|
|
"PREFIX=${placeholder "out"}"
|
2019-07-31 09:07:19 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildFlags = [
|
|
|
|
"build-release"
|
|
|
|
];
|
|
|
|
|
|
|
|
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
# otherwise, the check fails because we delete the `.git` in the unpack phase
|
|
|
|
substituteInPlace openpgp-ffi/Makefile \
|
|
|
|
--replace 'git grep' 'grep -R'
|
|
|
|
# Without this, the check fails
|
|
|
|
substituteInPlace openpgp-ffi/examples/Makefile \
|
|
|
|
--replace '-O0 -g -Wall -Werror' '-g'
|
|
|
|
substituteInPlace ffi/examples/Makefile \
|
|
|
|
--replace '-O0 -g -Wall -Werror' '-g'
|
|
|
|
'';
|
|
|
|
|
|
|
|
preInstall = lib.optionalString pythonSupport ''
|
|
|
|
export installFlags="PYTHONPATH=$PYTHONPATH:$out/${pythonPackages.python.sitePackages}"
|
|
|
|
'' + lib.optionalString (!pythonSupport) ''
|
|
|
|
export installFlags="PYTHON=disable"
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Don't use buildRustPackage phases, only use it for rust deps setup
|
|
|
|
configurePhase = null;
|
|
|
|
buildPhase = null;
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = null;
|
|
|
|
installPhase = null;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A cool new OpenPGP implementation";
|
|
|
|
homepage = "https://sequoia-pgp.org/";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ minijackson doronbehar ];
|
|
|
|
platforms = platforms.all;
|
2019-11-09 10:13:35 +00:00
|
|
|
broken = stdenv.targetPlatform.isDarwin;
|
2019-07-31 09:07:19 +01:00
|
|
|
};
|
|
|
|
}
|