gnu: Add symmetrica.
[jackhill/guix/guix.git] / gnu / packages / samba.scm
CommitLineData
a40f1543 1;;; GNU Guix --- Functional package management for GNU
602db62c 2;;; Copyright © 2013, 2015, 2017 Ludovic Courtès <ludo@gnu.org>
baece08a 3;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
c8c14704 4;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
c4514744 5;;; Copyright © 2016 Adonay "adfeno" Felipe Nogueira <https://libreplanet.org/wiki/User:Adfeno> <adfeno@openmailbox.org>
b4dcfce5 6;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
21a21c20 7;;; Copyright © 2017, 2018 Marius Bakke <mbakke@fastmail.com>
1a0a4a69 8;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
2b61cd37 9;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
bcf66fc2 10;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
a40f1543
LC
11;;;
12;;; This file is part of GNU Guix.
13;;;
14;;; GNU Guix is free software; you can redistribute it and/or modify it
15;;; under the terms of the GNU General Public License as published by
16;;; the Free Software Foundation; either version 3 of the License, or (at
17;;; your option) any later version.
18;;;
19;;; GNU Guix is distributed in the hope that it will be useful, but
20;;; WITHOUT ANY WARRANTY; without even the implied warranty of
21;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;;; GNU General Public License for more details.
23;;;
24;;; You should have received a copy of the GNU General Public License
25;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
26
27(define-module (gnu packages samba)
28 #:use-module (guix packages)
29 #:use-module (guix download)
30 #:use-module (guix build-system gnu)
31 #:use-module (guix licenses)
602db62c 32 #:use-module (guix utils)
a40f1543 33 #:use-module (gnu packages acl)
ae916e02 34 #:use-module (gnu packages admin)
b4dcfce5 35 #:use-module (gnu packages autotools)
44eff75e 36 #:use-module (gnu packages backup)
966c56f8 37 #:use-module (gnu packages base)
fbed1501 38 #:use-module (gnu packages check)
b4dcfce5 39 #:use-module (gnu packages crypto)
710964d1 40 #:use-module (gnu packages cups)
52513595 41 #:use-module (gnu packages databases)
cb1e0cfc 42 #:use-module (gnu packages docbook)
44eff75e 43 #:use-module (gnu packages gnupg)
b4dcfce5 44 #:use-module (gnu packages kerberos)
a40f1543 45 #:use-module (gnu packages linux)
17074cae 46 #:use-module (gnu packages openldap)
a40f1543 47 #:use-module (gnu packages perl)
17074cae
MB
48 #:use-module (gnu packages pkg-config)
49 #:use-module (gnu packages popt)
cb1e0cfc 50 #:use-module (gnu packages python)
17074cae
MB
51 #:use-module (gnu packages readline)
52 #:use-module (gnu packages tls)
44eff75e 53 #:use-module (gnu packages web)
cb1e0cfc 54 #:use-module (gnu packages xml))
a40f1543 55
b4dcfce5
TD
56(define-public cifs-utils
57 (package
58 (name "cifs-utils")
89ab360e 59 (version "6.9")
b4dcfce5
TD
60 (source
61 (origin
62 (method url-fetch)
63 (uri (string-append "https://download.samba.org/pub/linux-cifs/"
1a0a4a69 64 "cifs-utils/cifs-utils-" version ".tar.bz2"))
b4dcfce5 65 (sha256 (base32
89ab360e 66 "175cp509wn1zv8p8mv37hkf6sxiskrsxdnq22mhlsg61jazz3n0q"))))
b4dcfce5
TD
67 (build-system gnu-build-system)
68 (native-inputs
69 `(("autoconf" ,autoconf)
70 ("automake" ,automake)
71 ("pkg-config" ,pkg-config)))
72 (inputs
73 `(("keytuils" ,keyutils)
74 ("linux-pam" ,linux-pam)
75 ("libcap-ng" ,libcap-ng)
76 ("mit-krb5" ,mit-krb5)
77 ("samba" ,samba)
78 ("talloc" ,talloc)))
79 (arguments
80 `(#:phases
81 (modify-phases %standard-phases
b4dcfce5 82 (add-before 'configure 'set-root-sbin
89ab360e
TGR
83 (lambda _
84 ;; Don't try to install into "/sbin".
b4dcfce5
TD
85 (setenv "ROOTSBINDIR"
86 (string-append (assoc-ref %outputs "out") "/sbin"))
87 #t)))))
88 (synopsis "User-space utilities for Linux CIFS (Samba) mounts")
89 (description "@code{cifs-utils} is a set of user-space utilities for
90mounting and managing @dfn{Common Internet File System} (CIFS) shares using
91the Linux kernel CIFS client.")
92 (home-page "https://wiki.samba.org/index.php/LinuxCIFS_utils")
93 ;; cifs-utils is licensed as GPL3 or later, but 3 files contain LGPL code.
94 (license gpl3+)))
95
a40f1543
LC
96(define-public iniparser
97 (package
98 (name "iniparser")
a9691718 99 (version "4.1")
a40f1543
LC
100 (source (origin
101 (method url-fetch)
def8f501 102 (uri (string-append "https://github.com/ndevilla/iniparser/archive/v"
a40f1543 103 version ".tar.gz"))
def8f501 104 (file-name (string-append name "-" version ".tar.gz"))
a40f1543
LC
105 (sha256
106 (base32
a9691718 107 "1bpk8dj9d5cl64lg6jsk0qlzrpg848nymwxc3fx707fk1n0al3cn"))))
a40f1543
LC
108 (build-system gnu-build-system)
109 (arguments
cf52c925
TGR
110 `(#:make-flags
111 (list "CC=gcc")
112 #:phases
2af56bfa
EF
113 (modify-phases %standard-phases
114 (replace 'configure
115 (lambda* (#:key outputs #:allow-other-keys)
116 (substitute* '("Makefile" "test/Makefile")
117 (("/usr/lib")
444173f2
MW
118 (string-append (assoc-ref outputs "out") "/lib")))
119 #t))
2af56bfa 120 (replace 'build
cf52c925 121 (lambda* (#:key make-flags #:allow-other-keys)
a9691718 122 (apply invoke "make" "libiniparser.so.1"
cf52c925 123 make-flags)))
2af56bfa
EF
124 (replace 'install
125 (lambda* (#:key outputs #:allow-other-keys)
126 (let* ((out (assoc-ref outputs "out"))
127 (lib (string-append out "/lib"))
128 (inc (string-append out "/include"))
33fa13ea 129 (doc (string-append out "/share/doc/" ,name))
2af56bfa 130 (html (string-append doc "/html")))
fa5e6618 131 (define (install dir)
2af56bfa 132 (lambda (file)
fa5e6618
TGR
133 (install-file file dir)))
134 (for-each (install lib)
135 (find-files "." "^lib.*\\.so"))
2af56bfa 136 (with-directory-excursion lib
a9691718 137 (symlink "libiniparser.so.1" "libiniparser.so"))
fa5e6618 138 (for-each (install inc)
2af56bfa 139 (find-files "src" "\\.h$"))
fa5e6618 140 (for-each (install html)
2af56bfa 141 (find-files "html" ".*"))
fa5e6618 142 (for-each (install doc)
444173f2
MW
143 '("AUTHORS" "INSTALL" "LICENSE" "README.md"))
144 #t))))))
a9691718 145 (home-page "https://github.com/ndevilla/iniparser")
a40f1543
LC
146 (synopsis "Standalone ini file parsing library")
147 (description
36a4366d 148 "iniparser is a free stand-alone @code{ini} file parsing library (Windows
a40f1543
LC
149configuration files). It is written in portable ANSI C and should compile
150anywhere.")
151 (license x11)))
152
153(define-public samba
154 (package
155 (name "samba")
099c0f5f 156 (version "4.10.4")
a40f1543
LC
157 (source (origin
158 (method url-fetch)
31c6bfed
EF
159 (uri (string-append "https://download.samba.org/pub/samba/stable/"
160 "samba-" version ".tar.gz"))
a40f1543
LC
161 (sha256
162 (base32
099c0f5f 163 "0xhfbh42dihccc85ffx243lyhf3jnphhi6xfcsr3a6mhsm7w1p26"))))
a40f1543
LC
164 (build-system gnu-build-system)
165 (arguments
cb1e0cfc 166 `(#:phases
710964d1 167 (modify-phases %standard-phases
cb1e0cfc
MB
168 (add-before 'configure 'locate-docbook-stylesheets
169 (lambda* (#:key inputs #:allow-other-keys)
170 ;; XXX for some reason XML_CATALOG_FILES is not respected.
171 (substitute* '("buildtools/wafsamba/samba_conftests.py"
172 "buildtools/wafsamba/wafsamba.py"
173 "docs-xml/xslt/man.xsl")
174 (("http://docbook.sourceforge.net/release/xsl/current/")
175 (string-append (assoc-ref inputs "docbook-xsl")
176 "/xml/xsl/docbook-xsl-"
177 ,(package-version docbook-xsl) "/")))
178 #t))
710964d1
SB
179 (replace 'configure
180 ;; samba uses a custom configuration script that runs waf.
181 (lambda* (#:key outputs #:allow-other-keys)
182 (let* ((out (assoc-ref outputs "out"))
183 (libdir (string-append out "/lib")))
6ac59f45 184 (invoke "./configure"
710964d1
SB
185 "--enable-fhs"
186 ;; XXX: heimdal not packaged.
187 "--bundled-libraries=com_err"
188 (string-append "--prefix=" out)
c8c14704 189 "--sysconfdir=/etc"
710964d1
SB
190 ;; Install public and private libraries into
191 ;; a single directory to avoid RPATH issues.
192 (string-append "--libdir=" libdir)
6ac59f45 193 (string-append "--with-privatelibdir=" libdir)))))
c8c14704 194 (add-before 'install 'disable-etc-samba-directory-creation
c4514744
AFN
195 (lambda _
196 (substitute* "dynconfig/wscript"
2ea806f0
MB
197 (("bld\\.INSTALL_DIR\\(\"\\$\\{CONFIGDIR\\}\"\\)")
198 ""))
c8c14704 199 #t)))
a40f1543
LC
200 ;; XXX: The test infrastructure attempts to set password with
201 ;; smbpasswd, which fails with "smbpasswd -L can only be used by root."
202 ;; So disable tests until there's a workaround.
203 #:tests? #f))
204 (inputs ; TODO: Add missing dependencies
710964d1
SB
205 `(("acl" ,acl)
206 ("cups" ,cups)
a40f1543 207 ;; ("gamin" ,gamin)
44eff75e 208 ("gpgme" ,gpgme)
710964d1 209 ("gnutls" ,gnutls)
a40f1543 210 ("iniparser" ,iniparser)
44eff75e 211 ("jansson" ,jansson)
710964d1 212 ("libaio" ,libaio)
44eff75e 213 ("libarchive" ,libarchive)
a40f1543 214 ("linux-pam" ,linux-pam)
44eff75e 215 ("lmdb" ,lmdb)
710964d1
SB
216 ("openldap" ,openldap)
217 ("popt" ,popt)
3665b4dc 218 ("readline" ,readline)
710964d1 219 ("tdb" ,tdb)))
470771c5
MB
220 (propagated-inputs
221 ;; In Requires or Requires.private of pkg-config files.
222 `(("ldb" ,ldb)
223 ("talloc" ,talloc)
224 ("tevent" ,tevent)))
710964d1 225 (native-inputs
cb1e0cfc
MB
226 `(("docbook-xsl" ,docbook-xsl) ;for generating manpages
227 ("xsltproc" ,libxslt) ;ditto
228 ("perl" ,perl)
710964d1 229 ("pkg-config" ,pkg-config)
bcf66fc2 230 ("python" ,python)))
8b21d22d 231 (home-page "https://www.samba.org/")
a40f1543
LC
232 (synopsis
233 "The standard Windows interoperability suite of programs for GNU and Unix")
234 (description
235 "Since 1992, Samba has provided secure, stable and fast file and print
236services for all clients using the SMB/CIFS protocol, such as all versions of
237DOS and Windows, OS/2, GNU/Linux and many others.
238
239Samba is an important component to seamlessly integrate Linux/Unix Servers and
240Desktops into Active Directory environments using the winbind daemon.")
241 (license gpl3+)))
1790739c
DT
242
243(define-public talloc
244 (package
245 (name "talloc")
42bdd5ef 246 (version "2.2.0")
1790739c
DT
247 (source (origin
248 (method url-fetch)
01e64ef5 249 (uri (string-append "https://www.samba.org/ftp/talloc/talloc-"
1790739c
DT
250 version ".tar.gz"))
251 (sha256
252 (base32
42bdd5ef 253 "1g1fqa37xkjp9lp6lrwxrbfgashcink769ll505zvcwnxx2nlvsw"))))
1790739c
DT
254 (build-system gnu-build-system)
255 (arguments
960ae0cd
SB
256 '(#:phases
257 (modify-phases %standard-phases
258 (replace 'configure
259 (lambda* (#:key outputs #:allow-other-keys)
adbfc6b9
TGR
260 ;; talloc uses a custom configuration script that runs a Python
261 ;; script called 'waf', and doesn't tolerate unknown options.
960ae0cd
SB
262 (setenv "CONFIG_SHELL" (which "sh"))
263 (let ((out (assoc-ref outputs "out")))
adbfc6b9
TGR
264 (invoke "./configure"
265 (string-append "--prefix=" out))))))))
966c56f8
MB
266 (native-inputs
267 `(("which" ,which)))
1790739c 268 (inputs
966c56f8 269 `(("python" ,python)))
2e200ee8 270 (home-page "https://talloc.samba.org")
1790739c
DT
271 (synopsis "Hierarchical, reference counted memory pool system")
272 (description
273 "Talloc is a hierarchical, reference counted memory pool system with
274destructors. It is the core memory allocator used in Samba.")
275 (license gpl3+))) ;; The bundled "replace" library uses LGPL3.
ae916e02 276
602db62c
LC
277(define-public talloc/static
278 (package
279 (inherit talloc)
280 (name "talloc-static")
281 (synopsis
282 "Hierarchical, reference counted memory pool system (static library)")
283 (arguments
284 (substitute-keyword-arguments (package-arguments talloc)
285 ((#:phases phases)
286 ;; Since Waf, the build system talloc uses, apparently does not
287 ;; support building static libraries from a ./configure flag, roll our
288 ;; own build process. No need to be ashamed, we're not the only ones
289 ;; doing that:
290 ;; <https://github.com/proot-me/proot-static-build/blob/master/GNUmakefile>.
291 ;; :-)
292 `(modify-phases ,phases
293 (replace 'build
294 (lambda _
d83c52c6 295 (invoke "gcc" "-c" "-Ibin/default" "-I" "lib/replace"
966c56f8
MB
296 "-I." "-Wall" "-g" "-D__STDC_WANT_LIB_EXT1__=1"
297 "talloc.c")
d83c52c6 298 (invoke "ar" "rc" "libtalloc.a" "talloc.o")))
602db62c
LC
299 (replace 'install
300 (lambda* (#:key outputs #:allow-other-keys)
301 (let* ((out (assoc-ref outputs "out"))
302 (lib (string-append out "/lib"))
303 (include (string-append out "/include")))
304 (mkdir-p lib)
305 (install-file "libtalloc.a" lib)
306 (install-file "talloc.h" include)
307 #t)))
308 (delete 'check))))))) ;XXX: tests rely on Python modules
309
0674b3c9
SB
310(define-public tevent
311 (package
312 (name "tevent")
7fd084ae 313 (version "0.10.0")
0674b3c9
SB
314 (source (origin
315 (method url-fetch)
316 (uri (string-append "https://www.samba.org/ftp/tevent/tevent-"
317 version ".tar.gz"))
318 (sha256
319 (base32
7fd084ae 320 "1rm4d9245ya15wyrh9vqn1dnz14l2ic88mr46ykyc6kdrl99dwrk"))))
0674b3c9
SB
321 (build-system gnu-build-system)
322 (arguments
323 '(#:phases
324 (modify-phases %standard-phases
325 (replace 'configure
326 ;; tevent uses a custom configuration script that runs waf.
327 (lambda* (#:key outputs #:allow-other-keys)
328 (let ((out (assoc-ref outputs "out")))
ed0d6ed9
RW
329 (invoke "./configure"
330 (string-append "--prefix=" out)
331 "--bundled-libraries=NONE")))))))
0674b3c9
SB
332 (native-inputs
333 `(("pkg-config" ,pkg-config)
1ca20daa
MB
334 ("python" ,python)
335 ("which" ,which)))
0674b3c9
SB
336 (propagated-inputs
337 `(("talloc" ,talloc))) ; required by tevent.pc
338 (synopsis "Event system library")
339 (home-page "https://tevent.samba.org/")
340 (description
341 "Tevent is an event system based on the talloc memory management library.
342It is the core event system used in Samba. The low level tevent has support for
343many event types, including timers, signals, and the classic file descriptor events.")
344 (license lgpl3+)))
345
52513595
SB
346(define-public ldb
347 (package
348 (name "ldb")
f92854fe 349 (version "1.6.3")
52513595
SB
350 (source (origin
351 (method url-fetch)
352 (uri (string-append "https://www.samba.org/ftp/ldb/ldb-"
353 version ".tar.gz"))
354 (sha256
355 (base32
f92854fe 356 "01livdy3g073bm6xnc8zqnqrxg53sw8q66d1903z62hd6g87whsa"))
21a21c20
MB
357 (modules '((guix build utils)))
358 (snippet
359 '(begin
360 (for-each (lambda (file)
361 ;; Delete everything except the build tools.
362 (unless (or (string-prefix? "third_party/waf" file)
363 (string-suffix? "wscript" file))
364 (delete-file file)))
365 (find-files "third_party"))
366 #t))))
52513595
SB
367 (build-system gnu-build-system)
368 (arguments
3d53869e
MB
369 '(;; LMDB is only supported on 64-bit systems, yet the test suite
370 ;; requires it.
371 #:tests? (assoc-ref %build-inputs "lmdb")
372 #:phases
52513595
SB
373 (modify-phases %standard-phases
374 (replace 'configure
375 ;; ldb use a custom configuration script that runs waf.
376 (lambda* (#:key outputs #:allow-other-keys)
377 (let ((out (assoc-ref outputs "out")))
5b848463
RW
378 (invoke "./configure"
379 (string-append "--prefix=" out)
380 (string-append "--with-modulesdir=" out
381 "/lib/ldb/modules")
382 "--bundled-libraries=NONE")))))))
52513595 383 (native-inputs
fbed1501
MB
384 `(("cmocka" ,cmocka)
385 ("pkg-config" ,pkg-config)
4422a8c6
MB
386 ("python" ,python)
387 ("which" ,which)))
52513595
SB
388 (propagated-inputs
389 ;; ldb.pc refers to all these.
390 `(("talloc" ,talloc)
391 ("tdb" ,tdb)))
392 (inputs
3d53869e
MB
393 `(,@(if (target-64bit?)
394 `(("lmdb" ,lmdb))
395 '())
bdf16125 396 ("popt" ,popt)
52513595
SB
397 ("tevent" ,tevent)))
398 (synopsis "LDAP-like embedded database")
399 (home-page "https://ldb.samba.org/")
400 (description
401 "Ldb is a LDAP-like embedded database built on top of TDB. What ldb does
402is provide a fast database with an LDAP-like API designed to be used within an
403application. In some ways it can be seen as a intermediate solution between
404key-value pair databases and a real LDAP database.")
405 (license lgpl3+)))
406
ae916e02
SB
407(define-public ppp
408 (package
409 (name "ppp")
410 (version "2.4.7")
411 (source (origin
412 (method url-fetch)
413 (uri (string-append "https://www.samba.org/ftp/ppp/ppp-"
414 version ".tar.gz"))
65a58f39
MB
415 (patches
416 (list (origin
417 ;; Use OpenSSL for cryptography instead of the obsolete glibc
418 ;; crypto functions that were removed in glibc 2.28.
419 (method url-fetch)
420 (uri (string-append "https://github.com/paulusmack/ppp/commit/"
421 "3c7b86229f7bd2600d74db14b1fe5b3896be3875"
422 ".patch"))
423 (file-name "ppp-use-openssl-crypto.patch")
424 (sha256
425 (base32
426 "0qlbi247lx3injpy8a1gcij9yilik0vfaibkpvdp88k3sa1rs69z")))))
ae916e02
SB
427 (sha256
428 (base32
429 "0c7vrjxl52pdwi4ckrvfjr08b31lfpgwf3pp0cqy76a77vfs7q02"))))
430 (build-system gnu-build-system)
431 (arguments
432 '(#:tests? #f ; no check target
433 #:make-flags '("CC=gcc")
434 #:phases
435 (modify-phases %standard-phases
436 (add-before 'configure 'patch-Makefile
437 (lambda* (#:key inputs #:allow-other-keys)
438 (let ((libc (assoc-ref inputs "libc"))
65a58f39 439 (openssl (assoc-ref inputs "openssl"))
ae916e02
SB
440 (libpcap (assoc-ref inputs "libpcap")))
441 (substitute* "pppd/Makefile.linux"
442 (("/usr/include/crypt\\.h")
443 (string-append libc "/include/crypt.h"))
65a58f39
MB
444 (("/usr/include/openssl")
445 (string-append openssl "/include/openssl"))
ae916e02 446 (("/usr/include/pcap-bpf.h")
cbd7c657
MB
447 (string-append libpcap "/include/pcap-bpf.h")))
448 #t))))))
ae916e02 449 (inputs
65a58f39
MB
450 `(("libpcap" ,libpcap)
451 ("openssl" ,(@ (gnu packages tls) openssl))))
ae916e02
SB
452 (synopsis "Implementation of the Point-to-Point Protocol")
453 (home-page "https://ppp.samba.org/")
454 (description
455 "The Point-to-Point Protocol (PPP) provides a standard way to establish
456a network connection over a serial link. At present, this package supports IP
457and IPV6 and the protocols layered above them, such as TCP and UDP.")
458 ;; pppd, pppstats and pppdump are under BSD-style notices.
459 ;; some of the pppd plugins are GPL'd.
460 ;; chat is public domain.
461 (license (list bsd-3 bsd-4 gpl2+ public-domain))))