treewide: Mass replace 'sqlite}/bin' to refer to the correct outputs

authored by

Tuomas Tynkkynen and committed by
Tuomas Tynkkynen
b3df6530 897e0d12

+1 -1
+1 -1
nixos/modules/services/misc/gammu-smsd.nix
··· 228 228 '') 229 229 + optionalString (service == "sql" && sql.driver == "sqlite") '' 230 230 cat "${gammuPackage}/${initDBDir}/sqlite.sql" \ 231 - | ${pkgs.sqlite}/bin/sqlite3 ${sql.database} 231 + | ${pkgs.sqlite.bin}/bin/sqlite3 ${sql.database} 232 232 '' 233 233 + (let execPsql = extraArgs: concatStringsSep " " [ 234 234 (optionalString (sql.password != null) "PGPASSWORD=${sql.password}")