blob: 923046cdad4aeebb5fb48a69859837a5890903b2 (
plain) (
blame)
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
|
{ lib
, stdenv
, fetchFromGitLab
, cmake
, libsodium
, json_c
, ncurses
, libxml2
, jq
}:
stdenv.mkDerivation rec {
pname = "spectre-cli";
version = "unstable-2022-02-05";
src = fetchFromGitLab {
owner = "spectre.app";
repo = "cli";
rev = "a5e7aab28f44b90e5bd1204126339a81f64942d2";
sha256 = "1hp4l1rhg7bzgx0hcai08rvcy6l9645sfngy2cr96l1bpypcld5i";
fetchSubmodules = true;
};
nativeBuildInputs = [
cmake
libxml2
jq
];
buildInputs = [
libsodium
json_c
ncurses
];
cmakeFlags = [
"-DBUILD_SPECTRE_TESTS=ON"
];
preConfigure = ''
echo "${version}" > VERSION
# The default buildPhase wants to create a ´build´ dir so we rename the build script to stop conflicts.
mv build build.sh
'';
# Some tests are expected to fail on ARM64
# See: https://gitlab.com/spectre.app/cli/-/issues/27#note_962950844
doCheck = !(stdenv.isLinux && stdenv.isAarch64);
checkPhase = ''
mv ../spectre-cli-tests ../spectre_tests.xml ./
patchShebangs spectre-cli-tests
export HOME=$(mktemp -d)
./spectre-tests
./spectre-cli-tests
'';
installPhase = ''
mkdir -p $out/bin
mv spectre $out/bin
'';
meta = with lib; {
description = "Stateless cryptographic identity algorithm";
homepage = "https://spectre.app";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ emmabastas ];
mainProgram = "spectre";
platforms = platforms.all;
};
}
|