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