1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
|
{
lib,
stdenv,
buildPackages,
fetchurl,
fetchpatch,
wafHook,
pkg-config,
bison,
flex,
perl,
libxslt,
docbook_xsl,
fixDarwinDylibNames,
docbook_xml_dtd_45,
readline,
popt,
dbus,
libbsd,
libarchive,
zlib,
liburing,
gnutls,
systemdLibs,
samba,
talloc,
jansson,
ldb,
lmdb,
libtasn1,
tdb,
tevent,
libxcrypt,
cmocka,
rpcsvc-proto,
bash,
python3Packages,
pkgsHostTarget,
nixosTests,
libiconv,
testers,
pkgsCross,
enableLDAP ? false,
openldap,
enablePrinting ? false,
cups,
enableProfiling ? true,
enableMDNS ? false,
avahi,
enableDomainController ? false,
gpgme,
enableRegedit ? true,
ncurses,
enableCephFS ? false,
ceph,
enableGlusterFS ? false,
glusterfs,
libuuid,
enableAcl ? stdenv.hostPlatform.isLinux,
acl,
enableLibunwind ? (!stdenv.hostPlatform.isDarwin),
libunwind,
enablePam ? (!stdenv.hostPlatform.isDarwin),
pam,
}:
let
inherit (lib) optional optionals;
needsAnswers =
stdenv.hostPlatform != stdenv.buildPlatform
&& !(stdenv.hostPlatform.emulatorAvailable buildPackages);
answers =
{
x86_64-freebsd = ./answers-x86_64-freebsd;
}
.${stdenv.hostPlatform.system}
or (throw "Need pre-generated answers file to compile for ${stdenv.hostPlatform.system}");
isCross = !lib.systems.equals stdenv.hostPlatform stdenv.buildPlatform;
in
stdenv.mkDerivation (finalAttrs: {
pname = "samba";
version = "4.23.10";
src = fetchurl {
url = "https://download.samba.org/pub/samba/stable/samba-${finalAttrs.version}.tar.gz";
hash = "sha256-50s/SV1+SOZxC1Aas4HIDd88uZxmBHMtNgQCZdnK9FI=";
};
outputs = [
"out"
"dev"
"man"
];
patches = [
./4.x-no-persistent-install.patch
./4.x-no-persistent-install-dynconfig.patch
./4.x-fix-systemd-detection.patch
(fetchpatch {
# workaround for https://bugzilla.samba.org/show_bug.cgi?id=14164
name = "build-find-pre-built-heimdal-build-tools-in-case-of-.patch";
url = "https://raw.githubusercontent.com/LibreELEC/LibreELEC.tv/fe5538114371b98c7350e6fffbfc0d1ac063719c/packages/network/samba/patches/samba-200-4.11-fix-ASN1-bso14164.patch";
hash = "sha256-0/c9TH5FZ4S1OoM04gwDBJoIN+10unjLSv7Hlwt9FEQ=";
})
(fetchpatch {
# workaround for https://github.com/NixOS/nixpkgs/issues/303436
name = "samba-reproducible-builds.patch";
url = "https://gitlab.com/raboof/samba/-/commit/9995c5c234ece6888544cdbe6578d47e83dea0b5.patch";
hash = "sha256-TVKK/7wGsfP1pVf8o1NwazobiR8jVJCCMj/FWji3f2A=";
})
(fetchpatch {
name = "cross-compile.patch";
url = "https://gitlab.com/samba-team/samba/-/merge_requests/3990/diffs.patch?commit_id=52af20db81f24cbfaa6fef8233584fc40fc72d34";
hash = "sha256-GMPxM6KMtMPRljhRI+dDD2fOp+y5kpRqbjqkj19Du4Q=";
})
];
nativeBuildInputs = [
python3Packages.python
# Not `python3Packages.wrapPython` to workaround
# `python3Packages.wrapPython.__spliced.buildHost` having the wrong
# `pythonHost`. See https://github.com/NixOS/nixpkgs/issues/434307
pkgsHostTarget.python3Packages.wrapPython
wafHook
pkg-config
bison
flex
perl
perl.pkgs.ParseYapp
perl.pkgs.JSON
libxslt
libtasn1 # Needed also natively for `asn1Parser` program
docbook_xsl
docbook_xml_dtd_45
cmocka
rpcsvc-proto
]
++ optionals stdenv.hostPlatform.isLinux [
buildPackages.stdenv.cc
]
++ optional isCross samba # asn1_compile/compile_et
++ optionals stdenv.hostPlatform.isDarwin [
fixDarwinDylibNames
];
wafPath = "buildtools/bin/waf";
buildInputs = [
bash
python3Packages.python
readline
popt
dbus
jansson
libarchive
zlib
gnutls
libtasn1
lmdb
tdb
libxcrypt
]
++ optionals (!stdenv.hostPlatform.isBSD) [
libbsd
]
++ optionals stdenv.hostPlatform.isLinux [
liburing
systemdLibs
]
++ optionals stdenv.hostPlatform.isDarwin [ libiconv ]
++ optionals enableLDAP [
openldap.dev
python3Packages.markdown
]
++ optionals (!enableLDAP && stdenv.hostPlatform.isLinux) [
ldb
talloc
tevent
]
++ optional enablePrinting cups
++ optional enableMDNS avahi
++ optionals enableDomainController [
gpgme
python3Packages.dnspython
]
++ optional enableRegedit ncurses
++ optional (enableCephFS && stdenv.hostPlatform.isLinux) (lib.getDev ceph)
++ optionals (enableGlusterFS && stdenv.hostPlatform.isLinux) [
glusterfs
libuuid
]
++ optional enableAcl acl
++ optional enableLibunwind libunwind
++ optional enablePam pam;
postPatch = ''
# Removes absolute paths in scripts
sed -i 's,/sbin/,,g' ctdb/config/functions
# Fix the XML Catalog Paths
sed -i "s,\(XML_CATALOG_FILES=\"\),\1$XML_CATALOG_FILES ,g" buildtools/wafsamba/wafsamba.py
patchShebangs ./buildtools/bin
''
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
# The discard_const macro casts through uintptr_t, which newer clang
# rejects as non-constant in static initializers. Use a direct cast.
substituteInPlace lib/replace/replace.h --replace-fail \
'#define discard_const(ptr) ((void *)((uintptr_t)(ptr)))' \
'#define discard_const(ptr) ((void *)(ptr))'
''
+ lib.optionalString isCross ''
substituteInPlace wscript source3/wscript nsswitch/wscript_build lib/replace/wscript source4/ntvfs/sysdep/wscript_configure --replace-fail 'sys.platform' '"${stdenv.hostPlatform.parsed.kernel.name}"'
'';
preConfigure = ''
export PKGCONFIG="$PKG_CONFIG"
export PYTHONHASHSEED=1
''
+ lib.optionalString needsAnswers ''
cp ${answers} answers
chmod +w answers
'';
env = {
# python-config from build Python gives incorrect values when cross-compiling.
# If python-config is not found, the build falls back to using the sysconfig
# module, which works correctly in all cases.
PYTHON_CONFIG = "/invalid";
}
//
lib.optionalAttrs (stdenv.cc.bintools.isLLVM && lib.versionAtLeast stdenv.cc.bintools.version "17")
{
NIX_LDFLAGS = "--undefined-version";
};
wafConfigureFlags = [
"--with-static-modules=NONE"
"--with-shared-modules=ALL"
"--enable-fhs"
"--sysconfdir=/etc"
"--localstatedir=/var"
"--disable-rpath"
# otherwise third_party/waf/waflib/Tools/python.py would
# get the wrong pythondir from build platform python
"--pythondir=${placeholder "out"}/${python3Packages.python.sitePackages}"
(lib.enableFeature enablePrinting "cups")
]
++ optional (!enableDomainController) "--without-ad-dc"
++ optionals (!enableLDAP) [
"--without-ldap"
"--without-ads"
]
++ optionals (!enableLDAP && stdenv.hostPlatform.isLinux) [
"--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"
++ optional (!enablePam) "--without-pam"
++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
"--bundled-libraries=!asn1_compile,!compile_et"
"--cross-compile"
(
if (stdenv.hostPlatform.emulatorAvailable buildPackages) then
"--cross-execute=${stdenv.hostPlatform.emulator buildPackages}"
else
"--cross-answers=answers"
)
]
++ optionals stdenv.buildPlatform.is32bit [
# By default `waf configure` spawns as many as available CPUs. On
# 32-bit systems with many CPUs (like `i686` chroot on `x86_64`
# kernel) it can easily exhaust 32-bit address space and hang up:
# https://github.com/NixOS/nixpkgs/issues/287339#issuecomment-1949462057
# https://bugs.gentoo.org/683148
# Limit the job count down to the minimal on system with limited address
# space.
"--jobs 1"
];
pythonPath = [
python3Packages.dnspython
python3Packages.markdown
tdb
]
++ lib.optionals enableDomainController [
python3Packages.cryptography
];
strictDeps = true;
hardeningDisable = [ "strictflexarrays1" ];
preBuild = ''
export MAKEFLAGS="-j $NIX_BUILD_CORES"
'';
# Save asn1_compile and compile_et so they are available to run on the build
# platform when cross-compiling
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
mkdir -p "$dev/bin"
cp bin/asn1_compile bin/compile_et "$dev/bin"
'';
# Some libraries don't have /lib/samba in RPATH but need it.
# Use find -type f -executable -exec echo {} \; -exec sh -c 'ldd {} | grep "not found"' \;
# Looks like a bug in installer scripts.
postFixup = ''
export SAMBA_LIBS="$(find $out -type f -regex '.*\${stdenv.hostPlatform.extensions.sharedLibrary}\(\..*\)?' -exec dirname {} \; | sort | uniq)"
read -r -d "" SCRIPT << EOF || true
[ -z "\$SAMBA_LIBS" ] && exit 1;
BIN='{}';
''
+ lib.optionalString stdenv.hostPlatform.isLinux ''
OLD_LIBS="\$(patchelf --print-rpath "\$BIN" 2>/dev/null | tr ':' '\n')";
ALL_LIBS="\$(echo -e "\$SAMBA_LIBS\n\$OLD_LIBS" | sort | uniq | tr '\n' ':')";
patchelf --set-rpath "\$ALL_LIBS" "\$BIN" 2>/dev/null || exit $?;
patchelf --shrink-rpath "\$BIN";
''
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
install_name_tool -id \$BIN \$BIN
for old_rpath in \$(otool -L \$BIN | grep /private/tmp/ | awk '{print \$1}'); do
new_rpath=\$(find \$SAMBA_LIBS -name \$(basename \$old_rpath) | head -n 1)
install_name_tool -change \$old_rpath \$new_rpath \$BIN
done
''
+ ''
EOF
find $out -type f -regex '.*\${stdenv.hostPlatform.extensions.sharedLibrary}\(\..*\)?' -exec $SHELL -c "$SCRIPT" \;
find $out/bin -type f -exec $SHELL -c "$SCRIPT" \;
# Fix PYTHONPATH for some tools
wrapPythonPrograms
'';
disallowedReferences = lib.optionals isCross [
buildPackages.python3Packages.python
buildPackages.runtimeShellPackage
];
passthru.tests = {
samba = nixosTests.samba;
cross = pkgsCross.aarch64-multiplatform.samba;
pkg-config = testers.hasPkgConfigModules {
package = finalAttrs.finalPackage;
};
version = testers.testVersion {
command = "${finalAttrs.finalPackage}/bin/smbd -V";
package = finalAttrs.finalPackage;
};
}
// lib.optionalAttrs enableDomainController {
versionSambaTool = testers.testVersion {
command = "${lib.getExe' finalAttrs.finalPackage "samba-tool"} --version";
package = finalAttrs.finalPackage;
version = finalAttrs.version;
};
};
meta = {
homepage = "https://www.samba.org";
changelog = "https://www.samba.org/samba/history/samba-${finalAttrs.version}.html";
description = "Standard Windows interoperability suite of programs for Linux and Unix";
license = lib.licenses.gpl3;
platforms = lib.platforms.unix;
broken = enableGlusterFS;
maintainers = with lib.maintainers; [ aneeshusa ];
pkgConfigModules = [
"ndr_krb5pac"
"ndr_nbt"
"ndr_standard"
"ndr"
"netapi"
"samba-util"
"smbclient"
"wbclient"
];
};
})
|