tvl-depot/tvix/nix_cli/default.nix
Florian Klink 6c46ecd1c9 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>
2022-08-30 11:03:48 +00:00

8 lines
148 B
Nix

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