3
0
Fork 0
forked from mirrors/nixpkgs

nixos/calibre-server: fix ExecStart call

calibre-server changed the way you specify the library from using
--with-library to just allowing the directory to be specified. See
https://manual.calibre-ebook.com/generated/en/calibre-server.html for
details.
This commit is contained in:
Ryan Mulligan 2017-08-30 21:14:45 -07:00
parent fb18203450
commit 39a982dc3e

View file

@ -42,7 +42,7 @@ in
serviceConfig = {
User = "calibre-server";
Restart = "always";
ExecStart = "${pkgs.calibre}/bin/calibre-server --with-library=${cfg.libraryDir}";
ExecStart = "${pkgs.calibre}/bin/calibre-server ${cfg.libraryDir}";
};
};