about summary refs log tree commit diff
path: root/pkgs/servers/mqtt/mosquitto/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-12-17 18:01:38 +0000
committerGitHub <noreply@github.com>2023-12-17 18:01:38 +0000
commit71c41d360a50e63572570dfeab4ff452c763e9d7 (patch)
treef934e23c13a84251092cd9d6d55435f8b8c13881 /pkgs/servers/mqtt/mosquitto/default.nix
parent038a96835b20a7a74223c65c955611390bb4cc94 (diff)
parent6396e5680929ec6b9e88d6f1b308af5b83995183 (diff)
downloadnixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar.gz
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar.bz2
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar.lz
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar.xz
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.tar.zst
nixlib-71c41d360a50e63572570dfeab4ff452c763e9d7.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/servers/mqtt/mosquitto/default.nix')
-rw-r--r--pkgs/servers/mqtt/mosquitto/default.nix18
1 files changed, 10 insertions, 8 deletions
diff --git a/pkgs/servers/mqtt/mosquitto/default.nix b/pkgs/servers/mqtt/mosquitto/default.nix
index f586b606f1d2..824dcdf62f88 100644
--- a/pkgs/servers/mqtt/mosquitto/default.nix
+++ b/pkgs/servers/mqtt/mosquitto/default.nix
@@ -12,6 +12,7 @@
 , openssl
 , withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd
 , systemd
+, uthash
 , fetchpatch
 , nixosTests
 }:
@@ -52,11 +53,6 @@ stdenv.mkDerivation rec {
       substituteInPlace man/$f.xsl \
         --replace http://docbook.sourceforge.net/release/xsl/current ${docbook_xsl}/share/xml/docbook-xsl
     done
-
-    # the manpages are not generated when using cmake
-    pushd man
-    make
-    popd
   '';
 
   outputs = [ "out" "dev" "lib" ];
@@ -70,12 +66,18 @@ stdenv.mkDerivation rec {
     libuv
     libwebsockets'
     openssl
+    uthash
   ] ++ lib.optional withSystemd systemd;
 
   cmakeFlags = [
-    "-DWITH_THREADING=ON"
-    "-DWITH_WEBSOCKETS=ON"
-  ] ++ lib.optional withSystemd "-DWITH_SYSTEMD=ON";
+    (lib.cmakeBool "WITH_BUNDLED_DEPS" false)
+    (lib.cmakeBool "WITH_WEBSOCKETS" true)
+    (lib.cmakeBool "WITH_SYSTEMD" withSystemd)
+  ];
+
+  postFixup = ''
+    sed -i "s|^prefix=.*|prefix=$lib|g" $dev/lib/pkgconfig/*.pc
+  '';
 
   passthru.tests = {
     inherit (nixosTests) mosquitto;