chore(tvix/nix_cli): add default.nix

This exposes tvix.nix_cli as a proper attribute to readTree, so it's
actually built by CI.

Change-Id: I3cef085bd872b61c5944270c8926727bf1fa705d
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6083
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
Florian Klink 2022-08-12 21:09:05 +07:00 committed by flokli
parent 3f64e1fb04
commit 6c46ecd1c9

View file

@ -1,2 +1,8 @@
{ ... }:
{ }
{ depot, pkgs, ... }:
depot.third_party.naersk.buildPackage {
src = ./.;
doDoc = false;
# Tests invoke nix-store binary
doCheck = false;
}