Merge pull request #63824 from JohnAZoidberg/zoneminder-alias

nixos/zoneminder: Fix package and service build

Changed files
+20 -1
nixos
modules
services
pkgs
servers
+1 -1
nixos/modules/services/misc/zoneminder.nix
···
fastcgi_pass ${fcgi.socketType}:${fcgi.socketAddress};
}
-
location /cache {
+
location /cache/ {
alias /var/cache/${dirName};
}
+2
pkgs/servers/zoneminder/default.nix
···
patches = [
./default-to-http-1dot1.patch
+
# Explicitly link with dynamic linking library to fix build
+
./link-with-libdl.patch
];
postPatch = ''