nixos/pkgs/radicle-ci-broker.nix

22 lines
430 B
Nix
Raw Normal View History

{
rustPlatform,
srcs,
git,
2025-07-13 06:04:55 +08:00
}:
let
inherit (srcs) radicle-ci-broker;
in
2025-07-13 06:04:55 +08:00
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 ];
2025-07-13 06:04:55 +08:00
cargoLock = {
lockFile = "${finalAttrs.src}/Cargo.lock";
allowBuiltinFetchGit = true;
};
2025-07-13 06:04:55 +08:00
doCheck = false;
})