Samba: Difference between revisions

imported>Mentallyinspired
m added overrideAttrs to fix bug with missing path for dnspython, tdb, ldb and talloc
imported>Mentallyinspired
m Moved comment for readability
Line 271: Line 271:
       enableDomainController = true;
       enableDomainController = true;
       enableProfiling = true; # Optional for logging
       enableProfiling = true; # Optional for logging
    }).overrideAttrs (finalAttrs: previousAttrs: { # Set pythonpath manually as it is not set on 22.11 due to bug
      # Set pythonpath manually (bellow with overrideAttrs) as it is not set on 22.11 due to bug
    }).overrideAttrs (finalAttrs: previousAttrs: {
         pythonPath = with super; [ python3Packages.dnspython tdb ldb talloc ];
         pythonPath = with super; [ python3Packages.dnspython tdb ldb talloc ];
       });
       });