# SPDX-License-Identifier: MIT # SPDX-FileCopyrightText: 2023 Alyssa Ross import ../../lib/call-package.nix ({ srcWithNix, lib, runCommand, codespell }: runCommand "spectrum-codespell" { src = lib.fileset.toSource { root = ../..; fileset = srcWithNix; }; nativeBuildInputs = [ codespell ]; } '' cd $src codespell touch $out '' ) (_: {})