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
67 lines
1.1 KiB
Nix
67 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitLab,
|
|
bubblewrap,
|
|
makeBinaryWrapper,
|
|
cmake,
|
|
pkg-config,
|
|
ninja,
|
|
grpc,
|
|
gbenchmark,
|
|
gtest,
|
|
protobuf,
|
|
glog,
|
|
nlohmann_json,
|
|
zlib,
|
|
openssl,
|
|
libuuid,
|
|
tomlplusplus,
|
|
fuse3,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "buildbox";
|
|
version = "1.3.21";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "BuildGrid";
|
|
repo = "buildbox/buildbox";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-gZ4PnaIiMPh18Yy2120yIEaQaFpzGNnWXzS7Uw+n/+k=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
makeBinaryWrapper
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
bubblewrap
|
|
fuse3
|
|
gbenchmark
|
|
glog
|
|
grpc
|
|
gtest
|
|
libuuid
|
|
nlohmann_json
|
|
openssl
|
|
protobuf
|
|
tomlplusplus
|
|
zlib
|
|
];
|
|
|
|
postFixup = ''
|
|
wrapProgram $out/bin/buildbox-run --prefix PATH : ${lib.makeBinPath [ bubblewrap ]}
|
|
'';
|
|
|
|
meta = {
|
|
description = "Set of tools for remote worker build execution";
|
|
homepage = "https://gitlab.com/BuildGrid/buildbox/";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ shymega ];
|
|
};
|
|
})
|