feat(package): shellplot: created

This commit is contained in:
2025-08-23 16:37:08 +00:00
parent 25575a69f3
commit 7dadd2290f
5 changed files with 98 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
{ imagemagick, bash, writeShellScriptBin }:
writeShellScriptBin "shellplot" ''
set -a
BIN_CONVERT=${imagemagick}/bin/convert
set +a
${bash}/bin/sh ${./shellplot.sh}
''