summary refs log tree commit diff
path: root/nixos/modules/services/misc/gammu-smsd.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-10 22:51:23 +0300
committerTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>2016-04-14 08:32:20 +0300
commitb3df6530f7090800294b7662f00c031c3926713d (patch)
tree1826b8ea621dd5c13a8ec3676f4b48b685ef9eaf /nixos/modules/services/misc/gammu-smsd.nix
parent897e0d12242b7ac9b7970f6708bcf0c3b3622719 (diff)
downloadnixpkgs-b3df6530f7090800294b7662f00c031c3926713d.tar
nixpkgs-b3df6530f7090800294b7662f00c031c3926713d.tar.gz
nixpkgs-b3df6530f7090800294b7662f00c031c3926713d.tar.bz2
nixpkgs-b3df6530f7090800294b7662f00c031c3926713d.tar.lz
nixpkgs-b3df6530f7090800294b7662f00c031c3926713d.tar.xz
nixpkgs-b3df6530f7090800294b7662f00c031c3926713d.tar.zst
nixpkgs-b3df6530f7090800294b7662f00c031c3926713d.zip
treewide: Mass replace 'sqlite}/bin' to refer to the correct outputs
Diffstat (limited to 'nixos/modules/services/misc/gammu-smsd.nix')
-rw-r--r--nixos/modules/services/misc/gammu-smsd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/gammu-smsd.nix b/nixos/modules/services/misc/gammu-smsd.nix
index 91047ead436..2d406b63443 100644
--- a/nixos/modules/services/misc/gammu-smsd.nix
+++ b/nixos/modules/services/misc/gammu-smsd.nix
@@ -228,7 +228,7 @@ in {
         '')
       + optionalString (service == "sql" && sql.driver == "sqlite") ''
          cat "${gammuPackage}/${initDBDir}/sqlite.sql" \
-         | ${pkgs.sqlite}/bin/sqlite3 ${sql.database}
+         | ${pkgs.sqlite.bin}/bin/sqlite3 ${sql.database}
         ''
       + (let execPsql = extraArgs: concatStringsSep " " [
           (optionalString (sql.password != null) "PGPASSWORD=${sql.password}")