2eafb8192e
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
10 lines
202 B
Nix
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"
|
|
'';
|
|
}
|