Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
408 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
installShellFiles,
runCommandLocal,
}:
runCommandLocal "install-shell-files--install-bin"
{
nativeBuildInputs = [ installShellFiles ];
meta.platforms = lib.platforms.all;
}
''
mkdir -p bin
echo "echo hello za warudo" > bin/hello
echo "echo amigo me gusta mucho" > bin/amigo
installBin bin/*
cmp bin/amigo $out/bin/amigo
cmp bin/hello $out/bin/hello
''