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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
{
asciidoctor,
fetchFromRadicle,
gitMinimal,
installShellFiles,
jq,
lib,
makeBinaryWrapper,
man-db,
nixosTests,
openssh,
runCommand,
rustPlatform,
stdenv,
xdg-utils,
versionCheckHook,
version ? "1.10.3",
srcHash ? "sha256-xbVu+s4TQMc6fA8iUNq01y5lDxfC76Pwe6Z2rqA6C5Q=",
cargoHash ? "sha256-zQ6XnDJt3pek0WzC0J8PY111LGuzZeSCZ1QxwYAhPWw=",
updateScript ? ./update.sh,
}:
rustPlatform.buildRustPackage (finalAttrs: {
inherit version cargoHash;
pname = "radicle-node";
src = fetchFromRadicle {
seed = "seed.radicle.dev";
repo = "z3gqcJUoA1n9HaHKufZs5FCSGazv5";
tag = "releases/${finalAttrs.version}";
hash = srcHash;
leaveDotGit = true;
postFetch = ''
git -C $out rev-parse HEAD > $out/.git_head
git -C $out log -1 --pretty=%ct HEAD > $out/.git_time
rm -rf $out/.git
'';
};
strictDeps = true;
__structuredAttrs = true;
env.RADICLE_VERSION = finalAttrs.version;
nativeBuildInputs = [
asciidoctor
installShellFiles
makeBinaryWrapper
];
nativeCheckInputs = [ gitMinimal ];
preBuild = ''
export GIT_HEAD=$(<$src/.git_head)
export SOURCE_DATE_EPOCH=$(<$src/.git_time)
'';
cargoBuildFlags = [
"--package=radicle-node"
"--package=radicle-cli"
"--package=radicle-remote-helper"
];
cargoTestFlags = finalAttrs.cargoBuildFlags;
# tests regularly time out on aarch64
doCheck = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86;
preCheck = ''
export PATH=$PATH:$PWD/target/${stdenv.hostPlatform.rust.rustcTargetSpec}/release
# Tests want to open many files.
ulimit -n 4096
# Cap test threads to avoid timing issues on loaded builders (sync timeout is 5s)
max_threads=4
if [[ -n "$NIX_BUILD_CORES" && "$NIX_BUILD_CORES" -lt "$max_threads" ]]; then
max_threads=$NIX_BUILD_CORES
fi
export RUST_TEST_THREADS=$max_threads
'';
checkFlags = [
"--skip=service::message::tests::test_node_announcement_validate"
"--skip=tests::test_announcement_relay"
"--skip=tests::commands::rad_remote"
# https://radicle.zulipchat.com/#narrow/stream/369277-heartwood/topic/Flaky.20tests/near/438352360
"--skip=tests::e2e::test_connection_crossing"
# https://radicle.zulipchat.com/#narrow/stream/369277-heartwood/topic/Clone.20Partial.20Fail.20Flake
"--skip=rad_clone_partial_fail"
"--skip=commands::patch::rad_patch_merge_unauthorized_branch"
];
postInstall = ''
for page in $(find -name '*.adoc'); do
asciidoctor -d manpage -b manpage $page
installManPage ''${page::-5}
done
''
+ lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd rad \
--bash <($out/bin/rad completion bash) \
--fish <($out/bin/rad completion fish) \
--zsh <($out/bin/rad completion zsh)
'';
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
postFixup = ''
for program in $out/bin/* ;
do
wrapProgram "$program" \
--prefix PATH : "${
lib.makeBinPath [
gitMinimal
man-db
openssh
xdg-utils
]
}"
done
'';
passthru = {
inherit updateScript;
tests = {
basic =
runCommand "radicle-node-basic-test"
{
nativeBuildInputs = [
jq
openssh
finalAttrs.finalPackage
];
}
''
set -e
export RAD_HOME="$PWD/.radicle"
mkdir -p "$RAD_HOME/keys"
ssh-keygen -t ed25519 -N "" -f "$RAD_HOME/keys/radicle" > /dev/null
jq -n '.node.alias |= "nix"' > "$RAD_HOME/config.json"
rad config > /dev/null
rad debug | jq -e '
(.sshVersion | contains("${openssh.version}"))
and
(.gitVersion | contains("${gitMinimal.version}"))
'
touch $out
'';
nixos-run = nixosTests.radicle.extendNixOS {
module = {
services.radicle.package = finalAttrs.finalPackage;
};
};
ci-broker = nixosTests.radicle-ci-broker.extendNixOS {
module = {
services.radicle.package = finalAttrs.finalPackage;
};
};
};
};
meta = {
description = "Radicle node and CLI for decentralized code collaboration";
longDescription = ''
Radicle is an open source, peer-to-peer code collaboration stack built on Git.
Unlike centralized code hosting platforms, there is no single entity controlling the network.
Repositories are replicated across peers in a decentralized manner, and users are in full control of their data and workflow.
'';
homepage = "https://radicle.dev";
changelog = "https://radicle.network/nodes/seed.radicle.dev/rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5/tree/CHANGELOG.md";
license = with lib.licenses; [
asl20
mit
];
platforms = lib.platforms.unix;
teams = [ lib.teams.radicle ];
mainProgram = "rad";
};
})
|