1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
{
stdenv,
fetchFromGitLab,
lib,
darwin,
nettle,
nix-update-script,
rustPlatform,
pkg-config,
capnproto,
installShellFiles,
openssl,
cacert,
sqlite,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "sequoia-sq";
version = "1.3.0";
src = fetchFromGitLab {
owner = "sequoia-pgp";
repo = "sequoia-sq";
tag = "v${finalAttrs.version}";
hash = "sha256-1jssSlyjbrGgkxGC1gieZooVVI42Qvz0q+pIfcZRIj0=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-tATxGaoF/+cUDywvlnW1N2sKo/FbKhJM7yUb74mxB5s=";
nativeBuildInputs = [
pkg-config
rustPlatform.bindgenHook
capnproto
installShellFiles
];
buildInputs =
[
openssl
sqlite
nettle
]
++ lib.optionals stdenv.hostPlatform.isDarwin (
with darwin.apple_sdk.frameworks;
[
Security
SystemConfiguration
]
);
# Needed for tests to be able to create a ~/.local/share/sequoia directory
# Needed for avoiding "OpenSSL error" since 1.2.0
preCheck = ''
export HOME=$(mktemp -d)
export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt
'';
env.ASSET_OUT_DIR = "/tmp/";
doCheck = true;
postInstall = ''
installManPage /tmp/man-pages/*.*
installShellCompletion \
--cmd sq \
--bash /tmp/shell-completions/sq.bash \
--fish /tmp/shell-completions/sq.fish \
--zsh /tmp/shell-completions/_sq
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Command line application exposing a useful set of OpenPGP functionality for common tasks";
homepage = "https://sequoia-pgp.org/";
changelog = "https://gitlab.com/sequoia-pgp/sequoia-sq/-/blob/v${finalAttrs.version}/NEWS";
license = lib.licenses.lgpl2Plus;
maintainers = with lib.maintainers; [
minijackson
doronbehar
dvn0
];
mainProgram = "sq";
};
})
|