summary refs log tree commit diff
path: root/pkgs/servers/samba
diff options
context:
space:
mode:
authorLassulus <github@lassul.us>2023-02-09 20:50:56 +0530
committerGitHub <noreply@github.com>2023-02-09 20:50:56 +0530
commit7b2a482ea0240ef989001c6a6c28b47db7790483 (patch)
treecc6f8181aa2ac88c9cfd364f0920cb7f2e663275 /pkgs/servers/samba
parent02e2ee0374c62ec0c28c8ab095077eed0cba6ac3 (diff)
parent9b4cf10855256ba9d78c04c28dc43b27a4b4acf4 (diff)
Merge pull request #208795 from wucke13/dev/wucke13/fix-sssd
Diffstat (limited to 'pkgs/servers/samba')
-rw-r--r--pkgs/servers/samba/4.x.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/servers/samba/4.x.nix b/pkgs/servers/samba/4.x.nix
index 3f657bbeceafd..4828e613595ab 100644
--- a/pkgs/servers/samba/4.x.nix
+++ b/pkgs/servers/samba/4.x.nix
@@ -20,9 +20,12 @@
 , gnutls
 , systemd
 , samba
+, talloc
 , jansson
+, ldb
 , libtasn1
 , tdb
+, tevent
 , libxcrypt
 , cmocka
 , rpcsvc-proto
@@ -100,8 +103,11 @@ stdenv.mkDerivation rec {
     libarchive
     zlib
     gnutls
+    ldb
+    talloc
     libtasn1
     tdb
+    tevent
     libxcrypt
   ] ++ optionals stdenv.isLinux [ liburing systemd ]
     ++ optionals stdenv.isDarwin [ libiconv ]
@@ -143,6 +149,7 @@ stdenv.mkDerivation rec {
   ++ optionals (!enableLDAP) [
     "--without-ldap"
     "--without-ads"
+    "--bundled-libraries=!ldb,!pyldb-util!talloc,!pytalloc-util,!tevent,!tdb,!pytdb"
   ] ++ optional enableLibunwind "--with-libunwind"
     ++ optional enableProfiling "--with-profiling-data"
     ++ optional (!enableAcl) "--without-acl-support"