chore(tvix/cli): don't set COREPKGS anymore

Since cl/8213, tvix bundles corepkgs.

Change-Id: I17fa4452a6a1d554ae67b4aed9d9b1e77cb495f5
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8305
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2023-03-14 21:45:43 +01:00 committed by clbot
parent 5f260edf7f
commit 8cfd303203

View file

@ -9,10 +9,6 @@
needsOutput = true;
command = pkgs.writeShellScript "tvix-eval-stdenv" ''
# Ensure tvix can find <nix/fetchurl.nix>
COREPKGS=$(${pkgs.nix}/bin/nix-instantiate --eval -E '<nix>')
export NIX_PATH="nix=''${COREPKGS}:''${NIX_PATH}"
TVIX_OUTPUT=$(result/bin/tvix -E '(import ${pkgs.path} {}).stdenv.drvPath')
EXPECTED='${/* the verbatim expected Tvix output: */ "=> \"${pkgs.stdenv.drvPath}\" :: string"}'