Remove radicle-ci-broker from pkgs

This commit is contained in:
ulic-youthlic 2025-10-04 11:28:55 +08:00
parent 498ce94456
commit da29bcfc4c
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
5 changed files with 30 additions and 97 deletions

View file

@ -1,21 +0,0 @@
{
rustPlatform,
srcs,
git,
}:
let
inherit (srcs) radicle-ci-broker;
in
rustPlatform.buildRustPackage (finalAttrs: {
pname = "radicle-ci-broker";
version = "0-unstable-${radicle-ci-broker.date}-git${radicle-ci-broker.version}";
inherit (radicle-ci-broker) src;
nativeBuildInputs = [ git ];
cargoLock = {
lockFile = "${finalAttrs.src}/Cargo.lock";
allowBuiltinFetchGit = true;
};
doCheck = false;
})