Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
177 lines
4.5 KiB
Nix
177 lines
4.5 KiB
Nix
{
|
|
asciidoctor,
|
|
fetchFromRadicle,
|
|
gitMinimal,
|
|
installShellFiles,
|
|
jq,
|
|
lib,
|
|
makeBinaryWrapper,
|
|
man-db,
|
|
nixos,
|
|
nixosTests,
|
|
openssh,
|
|
radicle-node,
|
|
runCommand,
|
|
rustPlatform,
|
|
stdenv,
|
|
testers,
|
|
xdg-utils,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "radicle-node";
|
|
version = "1.5.0";
|
|
|
|
src = fetchFromRadicle {
|
|
seed = "seed.radicle.xyz";
|
|
repo = "z3gqcJUoA1n9HaHKufZs5FCSGazv5";
|
|
tag = "releases/${finalAttrs.version}";
|
|
hash = "sha256-/dWeG2jKCnfg7fwPP+BbRmEvM7rCppGYh2aeftcg3SY=";
|
|
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
|
|
'';
|
|
};
|
|
|
|
cargoHash = "sha256-4URBtN5lyzFPaLJUf/HPAL2ugRUa6sZhpDeiFR0W7cc=";
|
|
|
|
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
|
|
'';
|
|
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"
|
|
];
|
|
|
|
postInstall = ''
|
|
for page in $(find -name '*.adoc'); do
|
|
asciidoctor -d manpage -b manpage $page
|
|
installManPage ''${page::-5}
|
|
done
|
|
'';
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
versionCheckProgramArg = "--version";
|
|
doInstallCheck = true;
|
|
|
|
postFixup = ''
|
|
for program in $out/bin/* ;
|
|
do
|
|
wrapProgram "$program" \
|
|
--prefix PATH : "${
|
|
lib.makeBinPath [
|
|
gitMinimal
|
|
man-db
|
|
openssh
|
|
xdg-utils
|
|
]
|
|
}"
|
|
done
|
|
'';
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
passthru.tests =
|
|
let
|
|
package = radicle-node;
|
|
in
|
|
{
|
|
basic =
|
|
runCommand "${package.name}-basic-test"
|
|
{
|
|
nativeBuildInputs = [
|
|
jq
|
|
openssh
|
|
radicle-node
|
|
];
|
|
}
|
|
''
|
|
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-build = lib.recurseIntoAttrs {
|
|
checkConfig-success =
|
|
(nixos {
|
|
services.radicle.settings = {
|
|
node.alias = "foo";
|
|
};
|
|
}).config.services.radicle.configFile;
|
|
checkConfig-failure =
|
|
testers.testBuildFailure
|
|
(nixos {
|
|
services.radicle.settings = {
|
|
node.alias = null;
|
|
};
|
|
}).config.services.radicle.configFile;
|
|
};
|
|
nixos-run = nixosTests.radicle;
|
|
};
|
|
|
|
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.xyz";
|
|
license = with lib.licenses; [
|
|
asl20
|
|
mit
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [
|
|
amesgen
|
|
lorenzleutgeb
|
|
defelo
|
|
];
|
|
mainProgram = "rad";
|
|
};
|
|
})
|