(pkgs): Add new package radicle-ci-broker
This commit is contained in:
parent
16fd11acdb
commit
f6ace25228
7 changed files with 73 additions and 8 deletions
20
pkgs/radicle-ci-broker.nix
Normal file
20
pkgs/radicle-ci-broker.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
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;
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue