depot/third_party/home-manager/tests/modules/programs/pandoc/stub.nix
Default email 2eafb8192e Project import generated by Copybara.
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
2023-01-10 02:35:00 -07:00

10 lines
202 B
Nix

{
name = "pandoc-stub";
outPath = null;
buildScript = ''
mkdir -p "$out"/bin
pandoc="$out"/bin/pandoc
echo 'Stub to make the wrapper happy' > "$pandoc"
chmod a+x "$pandoc"
'';
}