mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
51e4f23fe0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
12 lines
242 B
Nix
12 lines
242 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
(pkgs.buildFHSUserEnv {
|
|
name = "bazel";
|
|
targetPkgs = pkgs: [
|
|
pkgs.bazel_6
|
|
pkgs.glibc
|
|
pkgs.gcc
|
|
pkgs.jdk11 # TODO(katexochen): investigate why our build chain doesn't work on NixOS
|
|
];
|
|
})
|
|
.env
|