mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-12 09:24:24 -05:00
8 lines
88 B
Nix
8 lines
88 B
Nix
{ mkShell, git, bazel_7 }:
|
|
mkShell {
|
|
nativeBuildInputs = [
|
|
bazel_7
|
|
git
|
|
];
|
|
}
|