# SPDX-License-Identifier: MIT # SPDX-FileCopyrightText: 2022 Alyssa Ross import {} ({ makeVm, pkgs }: { appvm-yes = makeVm { run = pkgs.pkgsStatic.callPackage ( { writeShellScript, coreutils }: writeShellScript "appvm-yes-run" '' ${coreutils}/bin/yes '' ) {}; }; })