Merge master into nix-packages and fix conflicts

This commit is contained in:
Omar Brikaa 2022-07-03 11:39:54 +02:00
commit 12fec39897
22 changed files with 160 additions and 17 deletions

19
packages/sqlite3/3.36.0/run vendored Normal file
View file

@ -0,0 +1,19 @@
#!/bin/bash
code=`cat "$1"`
shift
argv_text=""
for arg in "$@"
do
argv_text+='insert into argv (arg) values ("'"`echo "$arg" | sed 's/"/""/g'`"'");
'
done
sqlite3 <<< "create table argv (arg text);
$argv_text
$code"