mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-07 02:59:19 +03:00
nixos/gammu-smsd: remove unnecessary parentheses
This commit is contained in:
parent
1ecbafd0a2
commit
f97daa68bc
1 changed files with 2 additions and 2 deletions
|
@ -45,8 +45,8 @@ let
|
|||
initDBDir = "share/doc/gammu/examples/sql";
|
||||
|
||||
gammuPackage = with cfg.backend; (pkgs.gammu.override {
|
||||
dbiSupport = (service == "sql" && sql.driver == "sqlite");
|
||||
postgresSupport = (service == "sql" && sql.driver == "native_pgsql");
|
||||
dbiSupport = service == "sql" && sql.driver == "sqlite";
|
||||
postgresSupport = service == "sql" && sql.driver == "native_pgsql";
|
||||
});
|
||||
|
||||
in {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue