about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-07-30 02:50:22 +0200
committerGitHub <noreply@github.com>2023-07-30 02:50:22 +0200
commit015db1314103110dcf56b73d8694256148d331d8 (patch)
tree22c81801e8ff9d4f329c7dc5dcc1c9ed9a0a3f24 /pkgs/applications
parentf63549c55526aa73bcc6d6b23d87375f50d193d8 (diff)
parent5b3f58125e653253d59630639741ebebdc37c8e5 (diff)
Merge pull request #246065 from mweinelt/frigate-cache-path-fixup
frigate: fix serving of clips
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/video/frigate/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/frigate/default.nix b/pkgs/applications/video/frigate/default.nix
index e61d276147583..42d5b281bbea2 100644
--- a/pkgs/applications/video/frigate/default.nix
+++ b/pkgs/applications/video/frigate/default.nix
@@ -92,11 +92,11 @@ python.pkgs.buildPythonApplication rec {
 
     substituteInPlace frigate/const.py \
       --replace "/media/frigate" "/var/lib/frigate" \
-      --replace "/tmp/cache" "/var/cache/frigate"
+      --replace "/tmp/cache" "/var/cache/frigate/"
 
     substituteInPlace frigate/http.py \
       --replace "/opt/frigate" "${placeholder "out"}/${python.sitePackages}" \
-      --replace "/tmp/cache/" "/var/cache/frigate"
+      --replace "/tmp/cache/" "/var/cache/frigate/"
 
     substituteInPlace frigate/output.py \
       --replace "/opt/frigate" "${placeholder "out"}/${python.sitePackages}"