mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
zoneminder: Fix installation location for cgi-bin (#76855)
Before this change, the build would duplicate the prefix in the installation location for cgi-bin stuff: -- Installing: /nix/store/skg6b81hikd3fvvdf62xbkm6gsbid41a-zoneminder-1.32.3/nix/store/skg6b81hikd3fvvdf62xbkm6gsbid41a-zoneminder-1.32.3/libexec/zoneminder/cgi-bin/zms
This commit is contained in:
parent
9e9095c8e3
commit
5d1fda386e
|
@ -162,6 +162,10 @@ in stdenv.mkDerivation rec {
|
|||
"-DZM_CONFIG_DIR=${placeholder "out"}/etc/zoneminder"
|
||||
"-DZM_WEB_USER=${user}"
|
||||
"-DZM_WEB_GROUP=${user}"
|
||||
|
||||
# Workaround issue in CMakeLists.txt where ZM_CGIDIR set to ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBEXECDIR}/zoneminder/cgi-bin
|
||||
# But CMAKE_INSTALL_LIBEXECDIR is already an absolute path from cmake setup-hook
|
||||
"-DZM_CGIDIR=${placeholder "out"}/libexec/zoneminder/cgi-bin"
|
||||
];
|
||||
|
||||
passthru = { inherit dirName; };
|
||||
|
|
Loading…
Reference in a new issue