2020-08-14 18:26:05 +01:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitLab
|
|
|
|
, lib
|
|
|
|
, darwin
|
|
|
|
, git
|
|
|
|
, nettle
|
|
|
|
# Use the same llvmPackages version as Rust
|
2022-03-18 00:15:21 +00:00
|
|
|
, llvmPackages_12
|
2020-08-14 18:26:05 +01:00
|
|
|
, cargo
|
|
|
|
, rustc
|
|
|
|
, rustPlatform
|
|
|
|
, pkg-config
|
|
|
|
, glib
|
|
|
|
, openssl
|
|
|
|
, sqlite
|
|
|
|
, capnproto
|
|
|
|
, ensureNewerSourcesForZipFilesHook
|
|
|
|
, pythonSupport ? true
|
|
|
|
, pythonPackages ? null
|
2019-07-31 09:07:19 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert pythonSupport -> pythonPackages != null;
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "sequoia";
|
2021-02-06 16:04:41 +00:00
|
|
|
# Upstream has separate version numbering for the library and the CLI frontend.
|
|
|
|
# This derivation provides the CLI frontend, and thus uses its version number.
|
2022-07-21 03:57:22 +01:00
|
|
|
version = "0.27.0";
|
2019-07-31 09:07:19 +01:00
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "sequoia-pgp";
|
2020-08-14 18:26:05 +01:00
|
|
|
repo = "sequoia";
|
2021-02-06 16:04:41 +00:00
|
|
|
rev = "sq/v${version}";
|
2022-07-21 03:57:22 +01:00
|
|
|
sha256 = "sha256-KhJAXpj47Tvds5SLYwnsNeIlPf9QEopoCzsvvHgCwaI=";
|
2019-07-31 09:07:19 +01:00
|
|
|
};
|
|
|
|
|
2022-07-21 03:57:22 +01:00
|
|
|
cargoSha256 = "sha256-Y7iiZVIT9Vbe4YmTfGTU8p3H3odQKms2FBnnWgvF7mI=";
|
2019-07-31 09:07:19 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2020-08-14 18:26:05 +01:00
|
|
|
pkg-config
|
2019-07-31 09:07:19 +01:00
|
|
|
cargo
|
|
|
|
rustc
|
|
|
|
git
|
2022-03-18 00:15:21 +00:00
|
|
|
llvmPackages_12.libclang.lib
|
|
|
|
llvmPackages_12.clang
|
2019-07-31 09:07:19 +01:00
|
|
|
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
|
2021-07-20 22:07:53 +01:00
|
|
|
pythonPackages.pytest-runner
|
2019-07-31 09:07:19 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
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"}"
|
2020-10-26 12:18:42 +00:00
|
|
|
# Defaults to "ginstall" from some reason, although upstream's Makefiles check uname
|
|
|
|
"INSTALL=install"
|
2019-07-31 09:07:19 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildFlags = [
|
|
|
|
"build-release"
|
|
|
|
];
|
|
|
|
|
2022-03-18 00:15:21 +00:00
|
|
|
LIBCLANG_PATH = "${llvmPackages_12.libclang.lib}/lib";
|
2019-07-31 09:07:19 +01:00
|
|
|
|
2020-08-14 18:26:05 +01:00
|
|
|
# Sometimes, tests fail on CI (ofborg) & hydra without this
|
2022-07-21 03:57:22 +01:00
|
|
|
checkFlags = [
|
|
|
|
# doctest for sequoia-ipc fail for some reason
|
|
|
|
"--skip=macros::assert_send_and_sync"
|
|
|
|
"--skip=macros::time_it"
|
|
|
|
];
|
2020-06-17 11:44:24 +01:00
|
|
|
|
2019-07-31 09:07:19 +01:00
|
|
|
preInstall = lib.optionalString pythonSupport ''
|
|
|
|
export installFlags="PYTHONPATH=$PYTHONPATH:$out/${pythonPackages.python.sitePackages}"
|
|
|
|
'' + lib.optionalString (!pythonSupport) ''
|
2020-08-14 18:26:05 +01:00
|
|
|
export makeFlags="PYTHON=disable"
|
2019-07-31 09:07:19 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
# Don't use buildRustPackage phases, only use it for rust deps setup
|
|
|
|
configurePhase = null;
|
|
|
|
buildPhase = null;
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = null;
|
|
|
|
installPhase = null;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-07-31 09:07:19 +01:00
|
|
|
description = "A cool new OpenPGP implementation";
|
|
|
|
homepage = "https://sequoia-pgp.org/";
|
2021-08-31 16:10:47 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2019-07-31 09:07:19 +01:00
|
|
|
maintainers = with maintainers; [ minijackson doronbehar ];
|
2022-05-05 01:46:39 +01:00
|
|
|
mainProgram = "sq";
|
2019-07-31 09:07:19 +01:00
|
|
|
};
|
|
|
|
}
|