2013-02-12 13:35:54 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2017-05-12 05:53:08 -04:00
|
|
|
|
;;; Copyright © 2013, 2015, 2017 Ludovic Courtès <ludo@gnu.org>
|
2015-02-26 02:01:29 -05:00
|
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2019-11-13 14:46:30 -05:00
|
|
|
|
;;; Copyright © 2016, 2017, 2019 Efraim Flashner <efraim@flashner.co.il>
|
2016-12-03 18:22:56 -05:00
|
|
|
|
;;; Copyright © 2016 Adonay "adfeno" Felipe Nogueira <https://libreplanet.org/wiki/User:Adfeno> <adfeno@openmailbox.org>
|
2017-03-30 11:47:00 -04:00
|
|
|
|
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
|
2020-02-05 07:19:38 -05:00
|
|
|
|
;;; Copyright © 2017, 2018, 2020 Marius Bakke <mbakke@fastmail.com>
|
2021-01-01 16:22:08 -05:00
|
|
|
|
;;; Copyright © 2018–2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2018-11-11 07:08:56 -05:00
|
|
|
|
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
2019-03-20 15:23:34 -04:00
|
|
|
|
;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
|
2020-09-21 14:50:08 -04:00
|
|
|
|
;;; Copyright © 2020 Pierre Langlois <pierre.langlois@gmx.com>
|
2020-11-01 23:59:07 -05:00
|
|
|
|
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
2013-02-12 13:35:54 -05:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages samba)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix download)
|
2019-11-13 14:46:30 -05:00
|
|
|
|
#:use-module (guix git-download)
|
2013-02-12 13:35:54 -05:00
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
|
#:use-module (guix licenses)
|
2017-05-12 05:53:08 -04:00
|
|
|
|
#:use-module (guix utils)
|
2020-09-19 18:57:41 -04:00
|
|
|
|
#:use-module (gnu packages)
|
2013-02-12 13:35:54 -05:00
|
|
|
|
#:use-module (gnu packages acl)
|
2015-11-15 22:16:16 -05:00
|
|
|
|
#:use-module (gnu packages admin)
|
2017-03-30 11:47:00 -04:00
|
|
|
|
#:use-module (gnu packages autotools)
|
2018-12-04 10:38:53 -05:00
|
|
|
|
#:use-module (gnu packages backup)
|
2019-03-02 09:07:10 -05:00
|
|
|
|
#:use-module (gnu packages base)
|
2017-07-23 08:24:28 -04:00
|
|
|
|
#:use-module (gnu packages check)
|
2017-03-30 11:47:00 -04:00
|
|
|
|
#:use-module (gnu packages crypto)
|
2015-12-14 23:20:26 -05:00
|
|
|
|
#:use-module (gnu packages cups)
|
2015-12-14 23:19:26 -05:00
|
|
|
|
#:use-module (gnu packages databases)
|
2017-09-27 07:44:39 -04:00
|
|
|
|
#:use-module (gnu packages docbook)
|
2020-11-01 23:59:07 -05:00
|
|
|
|
#:use-module (gnu packages glib)
|
2020-11-02 17:03:57 -05:00
|
|
|
|
#:use-module (gnu packages gnome)
|
2018-12-04 10:38:53 -05:00
|
|
|
|
#:use-module (gnu packages gnupg)
|
2017-03-30 11:47:00 -04:00
|
|
|
|
#:use-module (gnu packages kerberos)
|
2013-02-12 13:35:54 -05:00
|
|
|
|
#:use-module (gnu packages linux)
|
2019-06-16 02:21:57 -04:00
|
|
|
|
#:use-module (gnu packages onc-rpc)
|
2018-12-04 12:14:22 -05:00
|
|
|
|
#:use-module (gnu packages openldap)
|
2013-02-12 13:35:54 -05:00
|
|
|
|
#:use-module (gnu packages perl)
|
2018-12-04 12:14:22 -05:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
|
#:use-module (gnu packages popt)
|
2017-09-27 07:44:39 -04:00
|
|
|
|
#:use-module (gnu packages python)
|
2018-12-04 12:14:22 -05:00
|
|
|
|
#:use-module (gnu packages readline)
|
2020-05-10 23:18:02 -04:00
|
|
|
|
#:use-module (gnu packages time)
|
2018-12-04 12:14:22 -05:00
|
|
|
|
#:use-module (gnu packages tls)
|
2018-12-04 10:38:53 -05:00
|
|
|
|
#:use-module (gnu packages web)
|
2017-09-27 07:44:39 -04:00
|
|
|
|
#:use-module (gnu packages xml))
|
2013-02-12 13:35:54 -05:00
|
|
|
|
|
2017-03-30 11:47:00 -04:00
|
|
|
|
(define-public cifs-utils
|
|
|
|
|
(package
|
|
|
|
|
(name "cifs-utils")
|
2021-04-16 10:31:12 -04:00
|
|
|
|
(version "6.13")
|
2017-03-30 11:47:00 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://download.samba.org/pub/linux-cifs/"
|
2019-04-10 21:17:18 -04:00
|
|
|
|
"cifs-utils/cifs-utils-" version ".tar.bz2"))
|
2017-03-30 11:47:00 -04:00
|
|
|
|
(sha256 (base32
|
2021-04-16 10:31:12 -04:00
|
|
|
|
"0mnhcc4ayj2vn2azhk45fnal1hibsv0q2c4ihkxcrjhkhrn7in23"))))
|
2017-03-30 11:47:00 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("keytuils" ,keyutils)
|
|
|
|
|
("linux-pam" ,linux-pam)
|
|
|
|
|
("libcap-ng" ,libcap-ng)
|
|
|
|
|
("mit-krb5" ,mit-krb5)
|
|
|
|
|
("samba" ,samba)
|
|
|
|
|
("talloc" ,talloc)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'set-root-sbin
|
2019-12-23 17:14:40 -05:00
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2019-04-10 21:20:14 -04:00
|
|
|
|
;; Don't try to install into "/sbin".
|
2017-03-30 11:47:00 -04:00
|
|
|
|
(setenv "ROOTSBINDIR"
|
2019-12-23 17:14:40 -05:00
|
|
|
|
(string-append (assoc-ref outputs "out") "/sbin"))
|
2019-12-23 17:12:42 -05:00
|
|
|
|
#t))
|
|
|
|
|
(add-before 'install 'create-man8dir
|
|
|
|
|
;; Create a directory that isn't created since version 6.10.
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
|
(mkdir-p (string-append out "/share/man/man8"))
|
|
|
|
|
#t))))))
|
2017-03-30 11:47:00 -04:00
|
|
|
|
(synopsis "User-space utilities for Linux CIFS (Samba) mounts")
|
|
|
|
|
(description "@code{cifs-utils} is a set of user-space utilities for
|
|
|
|
|
mounting and managing @dfn{Common Internet File System} (CIFS) shares using
|
|
|
|
|
the Linux kernel CIFS client.")
|
|
|
|
|
(home-page "https://wiki.samba.org/index.php/LinuxCIFS_utils")
|
|
|
|
|
;; cifs-utils is licensed as GPL3 or later, but 3 files contain LGPL code.
|
|
|
|
|
(license gpl3+)))
|
|
|
|
|
|
2013-02-12 13:35:54 -05:00
|
|
|
|
(define-public iniparser
|
|
|
|
|
(package
|
|
|
|
|
(name "iniparser")
|
2018-01-15 01:30:08 -05:00
|
|
|
|
(version "4.1")
|
2013-02-12 13:35:54 -05:00
|
|
|
|
(source (origin
|
2019-11-13 14:46:30 -05:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/ndevilla/iniparser")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
2013-02-12 13:35:54 -05:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-11-13 14:46:30 -05:00
|
|
|
|
"0dhab6pad6wh816lr7r3jb6z273njlgw2vpw8kcfnmi7ijaqhnr5"))))
|
2013-02-12 13:35:54 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2018-01-15 01:29:59 -05:00
|
|
|
|
`(#:make-flags
|
2020-06-02 13:27:11 -04:00
|
|
|
|
(list ,(string-append "CC=" (cc-for-target)))
|
2018-01-15 01:29:59 -05:00
|
|
|
|
#:phases
|
2016-07-24 04:23:01 -04:00
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(substitute* '("Makefile" "test/Makefile")
|
|
|
|
|
(("/usr/lib")
|
2018-04-12 03:45:00 -04:00
|
|
|
|
(string-append (assoc-ref outputs "out") "/lib")))
|
|
|
|
|
#t))
|
2016-07-24 04:23:01 -04:00
|
|
|
|
(replace 'build
|
2018-01-15 01:29:59 -05:00
|
|
|
|
(lambda* (#:key make-flags #:allow-other-keys)
|
2018-01-15 01:30:08 -05:00
|
|
|
|
(apply invoke "make" "libiniparser.so.1"
|
2018-01-15 01:29:59 -05:00
|
|
|
|
make-flags)))
|
2016-07-24 04:23:01 -04:00
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(lib (string-append out "/lib"))
|
|
|
|
|
(inc (string-append out "/include"))
|
2018-01-15 01:29:54 -05:00
|
|
|
|
(doc (string-append out "/share/doc/" ,name))
|
2016-07-24 04:23:01 -04:00
|
|
|
|
(html (string-append doc "/html")))
|
2018-01-15 01:30:03 -05:00
|
|
|
|
(define (install dir)
|
2016-07-24 04:23:01 -04:00
|
|
|
|
(lambda (file)
|
2018-01-15 01:30:03 -05:00
|
|
|
|
(install-file file dir)))
|
|
|
|
|
(for-each (install lib)
|
|
|
|
|
(find-files "." "^lib.*\\.so"))
|
2016-07-24 04:23:01 -04:00
|
|
|
|
(with-directory-excursion lib
|
2018-01-15 01:30:08 -05:00
|
|
|
|
(symlink "libiniparser.so.1" "libiniparser.so"))
|
2018-01-15 01:30:03 -05:00
|
|
|
|
(for-each (install inc)
|
2016-07-24 04:23:01 -04:00
|
|
|
|
(find-files "src" "\\.h$"))
|
2018-01-15 01:30:03 -05:00
|
|
|
|
(for-each (install html)
|
2016-07-24 04:23:01 -04:00
|
|
|
|
(find-files "html" ".*"))
|
2018-01-15 01:30:03 -05:00
|
|
|
|
(for-each (install doc)
|
2018-04-12 03:45:00 -04:00
|
|
|
|
'("AUTHORS" "INSTALL" "LICENSE" "README.md"))
|
|
|
|
|
#t))))))
|
2018-01-15 01:30:08 -05:00
|
|
|
|
(home-page "https://github.com/ndevilla/iniparser")
|
2020-06-02 13:52:29 -04:00
|
|
|
|
(synopsis "Simple @file{.ini} configuration file parsing library")
|
2013-02-12 13:35:54 -05:00
|
|
|
|
(description
|
2020-06-02 13:52:29 -04:00
|
|
|
|
"The iniParser C library reads and writes Windows-style @file{.ini}
|
|
|
|
|
configuration files. These are simple text files with a basic structure
|
|
|
|
|
composed of sections, properties, and values. While not expressive, they
|
|
|
|
|
are easy to read, write, and modify.
|
|
|
|
|
|
|
|
|
|
The library is small, thread safe, and written in portable ANSI C with no
|
|
|
|
|
external dependencies.")
|
2013-02-12 13:35:54 -05:00
|
|
|
|
(license x11)))
|
|
|
|
|
|
|
|
|
|
(define-public samba
|
|
|
|
|
(package
|
|
|
|
|
(name "samba")
|
2021-02-07 17:24:03 -05:00
|
|
|
|
(version "4.13.4")
|
2020-06-01 22:30:36 -04:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://download.samba.org/pub/samba/stable/"
|
|
|
|
|
"samba-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
2021-02-07 17:24:03 -05:00
|
|
|
|
(base32 "0y2wc7njhyhg055krp878xfv9c3wbhrhzn02d5ich30hyxilrcx1"))
|
2020-09-19 18:57:41 -04:00
|
|
|
|
(patches (search-patches "samba-fix-fcntl-hint-detection.patch"))
|
2020-06-01 22:30:36 -04:00
|
|
|
|
(modules '((guix build utils)))
|
2020-05-10 23:18:02 -04:00
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
2020-11-02 17:03:57 -05:00
|
|
|
|
;; XXX: Some bundled libraries (e.g, popt, cmocka) are used from
|
|
|
|
|
;; the system, but their bundled sources must be kept as they
|
|
|
|
|
;; include the WAF scripts used for detecting them.
|
2020-05-10 23:18:02 -04:00
|
|
|
|
(delete-file-recursively "third_party/pyiso8601")
|
|
|
|
|
#t))))
|
2013-02-12 13:35:54 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2020-11-02 22:03:18 -05:00
|
|
|
|
`(#:make-flags '("TEST_OPTIONS=--quick") ;some tests are very long
|
|
|
|
|
#:phases
|
2015-12-14 23:20:26 -05:00
|
|
|
|
(modify-phases %standard-phases
|
2020-11-01 23:59:07 -05:00
|
|
|
|
(add-before 'configure 'setup-docbook-stylesheets
|
2017-09-27 07:44:39 -04:00
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
2020-11-01 23:59:07 -05:00
|
|
|
|
;; Append Samba's own DTDs to XML_CATALOG_FILES
|
|
|
|
|
;; (c.f. docs-xml/build/README).
|
|
|
|
|
(copy-file "docs-xml/build/catalog.xml.in"
|
|
|
|
|
"docs-xml/build/catalog.xml")
|
|
|
|
|
(substitute* "docs-xml/build/catalog.xml"
|
|
|
|
|
(("/@abs_top_srcdir@")
|
|
|
|
|
(string-append (getcwd) "/docs-xml")))
|
|
|
|
|
;; Honor XML_CATALOG_FILES.
|
|
|
|
|
(substitute* "buildtools/wafsamba/wafsamba.py"
|
|
|
|
|
(("XML_CATALOG_FILES=\"\\$\\{SAMBA_CATALOGS\\}" all)
|
|
|
|
|
(string-append all " $XML_CATALOG_FILES")))
|
2017-09-27 07:44:39 -04:00
|
|
|
|
#t))
|
2015-12-14 23:20:26 -05:00
|
|
|
|
(replace 'configure
|
2020-11-02 17:03:57 -05:00
|
|
|
|
;; Samba uses a custom configuration script that runs WAF.
|
2015-12-14 23:20:26 -05:00
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(libdir (string-append out "/lib")))
|
2018-06-26 12:30:58 -04:00
|
|
|
|
(invoke "./configure"
|
2020-11-02 22:03:18 -05:00
|
|
|
|
"--enable-selftest"
|
2015-12-14 23:20:26 -05:00
|
|
|
|
"--enable-fhs"
|
|
|
|
|
(string-append "--prefix=" out)
|
2017-03-24 05:30:27 -04:00
|
|
|
|
"--sysconfdir=/etc"
|
2020-11-01 23:57:44 -05:00
|
|
|
|
"--localstatedir=/var"
|
2015-12-14 23:20:26 -05:00
|
|
|
|
;; Install public and private libraries into
|
|
|
|
|
;; a single directory to avoid RPATH issues.
|
|
|
|
|
(string-append "--libdir=" libdir)
|
2018-06-26 12:30:58 -04:00
|
|
|
|
(string-append "--with-privatelibdir=" libdir)))))
|
2020-11-01 23:57:44 -05:00
|
|
|
|
(add-before 'install 'disable-etc,var-samba-directories-setup
|
2016-12-03 18:22:56 -05:00
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "dynconfig/wscript"
|
2020-11-01 23:57:44 -05:00
|
|
|
|
(("bld\\.INSTALL_DIR.*") ""))
|
2017-03-24 05:30:27 -04:00
|
|
|
|
#t)))
|
2020-11-02 22:03:18 -05:00
|
|
|
|
;; FIXME: The test suite seemingly hangs after failing to provision the
|
|
|
|
|
;; test environment.
|
2013-02-12 13:35:54 -05:00
|
|
|
|
#:tests? #f))
|
2020-11-02 17:03:57 -05:00
|
|
|
|
(inputs
|
2015-12-14 23:20:26 -05:00
|
|
|
|
`(("acl" ,acl)
|
2020-11-02 17:03:57 -05:00
|
|
|
|
("cmocka" ,cmocka)
|
2015-12-14 23:20:26 -05:00
|
|
|
|
("cups" ,cups)
|
2020-11-02 17:03:57 -05:00
|
|
|
|
("gamin" ,gamin)
|
2021-03-06 06:37:04 -05:00
|
|
|
|
("dbus" ,dbus)
|
2018-12-04 10:38:53 -05:00
|
|
|
|
("gpgme" ,gpgme)
|
2015-12-14 23:20:26 -05:00
|
|
|
|
("gnutls" ,gnutls)
|
2020-11-02 17:03:57 -05:00
|
|
|
|
("heimdal" ,heimdal)
|
2018-12-04 10:38:53 -05:00
|
|
|
|
("jansson" ,jansson)
|
|
|
|
|
("libarchive" ,libarchive)
|
2020-11-02 22:03:18 -05:00
|
|
|
|
("libtirpc" ,libtirpc)
|
2013-02-12 13:35:54 -05:00
|
|
|
|
("linux-pam" ,linux-pam)
|
2018-12-04 10:38:53 -05:00
|
|
|
|
("lmdb" ,lmdb)
|
2015-12-14 23:20:26 -05:00
|
|
|
|
("openldap" ,openldap)
|
2020-05-10 23:18:02 -04:00
|
|
|
|
("perl" ,perl)
|
|
|
|
|
("python" ,python)
|
2015-12-14 23:20:26 -05:00
|
|
|
|
("popt" ,popt)
|
2013-02-15 16:04:51 -05:00
|
|
|
|
("readline" ,readline)
|
2015-12-14 23:20:26 -05:00
|
|
|
|
("tdb" ,tdb)))
|
2018-05-02 08:42:49 -04:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
;; In Requires or Requires.private of pkg-config files.
|
|
|
|
|
`(("ldb" ,ldb)
|
|
|
|
|
("talloc" ,talloc)
|
|
|
|
|
("tevent" ,tevent)))
|
2015-12-14 23:20:26 -05:00
|
|
|
|
(native-inputs
|
2020-05-10 23:18:02 -04:00
|
|
|
|
`(("perl-parse-yapp" ,perl-parse-yapp)
|
2015-12-14 23:20:26 -05:00
|
|
|
|
("pkg-config" ,pkg-config)
|
2020-05-10 23:18:02 -04:00
|
|
|
|
("python-iso8601" ,python-iso8601)
|
|
|
|
|
("rpcsvc-proto" ,rpcsvc-proto) ; for 'rpcgen'
|
|
|
|
|
;; For generating man pages.
|
|
|
|
|
("docbook-xml" ,docbook-xml-4.2)
|
|
|
|
|
("docbook-xsl" ,docbook-xsl)
|
2020-11-01 23:59:07 -05:00
|
|
|
|
("xsltproc" ,libxslt)
|
2021-03-06 06:37:04 -05:00
|
|
|
|
("libxml2" ,libxml2))) ;for XML_CATALOG_FILES
|
2016-07-09 16:46:49 -04:00
|
|
|
|
(home-page "https://www.samba.org/")
|
2013-02-12 13:35:54 -05:00
|
|
|
|
(synopsis
|
|
|
|
|
"The standard Windows interoperability suite of programs for GNU and Unix")
|
|
|
|
|
(description
|
|
|
|
|
"Since 1992, Samba has provided secure, stable and fast file and print
|
|
|
|
|
services for all clients using the SMB/CIFS protocol, such as all versions of
|
|
|
|
|
DOS and Windows, OS/2, GNU/Linux and many others.
|
|
|
|
|
|
|
|
|
|
Samba is an important component to seamlessly integrate Linux/Unix Servers and
|
|
|
|
|
Desktops into Active Directory environments using the winbind daemon.")
|
|
|
|
|
(license gpl3+)))
|
2014-04-06 12:25:57 -04:00
|
|
|
|
|
|
|
|
|
(define-public talloc
|
|
|
|
|
(package
|
|
|
|
|
(name "talloc")
|
2021-02-07 17:23:56 -05:00
|
|
|
|
(version "2.3.2")
|
2014-04-06 12:25:57 -04:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2015-06-16 14:20:06 -04:00
|
|
|
|
(uri (string-append "https://www.samba.org/ftp/talloc/talloc-"
|
2014-04-06 12:25:57 -04:00
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2021-02-07 17:23:56 -05:00
|
|
|
|
"1mvv57srpzcc1qh6vjjyjhgpdlcw4bmmsxfz4j8pfk9qkvwkx817"))))
|
2014-04-06 12:25:57 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2015-12-14 23:09:19 -05:00
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2018-01-15 01:30:13 -05:00
|
|
|
|
;; talloc uses a custom configuration script that runs a Python
|
|
|
|
|
;; script called 'waf', and doesn't tolerate unknown options.
|
2015-12-14 23:09:19 -05:00
|
|
|
|
(setenv "CONFIG_SHELL" (which "sh"))
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
2018-01-15 01:30:13 -05:00
|
|
|
|
(invoke "./configure"
|
|
|
|
|
(string-append "--prefix=" out))))))))
|
2019-03-02 09:07:10 -05:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("which" ,which)))
|
2014-04-06 12:25:57 -04:00
|
|
|
|
(inputs
|
2019-03-02 09:07:10 -05:00
|
|
|
|
`(("python" ,python)))
|
2017-03-24 07:16:09 -04:00
|
|
|
|
(home-page "https://talloc.samba.org")
|
2014-04-06 12:25:57 -04:00
|
|
|
|
(synopsis "Hierarchical, reference counted memory pool system")
|
|
|
|
|
(description
|
|
|
|
|
"Talloc is a hierarchical, reference counted memory pool system with
|
|
|
|
|
destructors. It is the core memory allocator used in Samba.")
|
|
|
|
|
(license gpl3+))) ;; The bundled "replace" library uses LGPL3.
|
2015-11-15 22:16:16 -05:00
|
|
|
|
|
2017-05-12 05:53:08 -04:00
|
|
|
|
(define-public talloc/static
|
|
|
|
|
(package
|
|
|
|
|
(inherit talloc)
|
|
|
|
|
(name "talloc-static")
|
|
|
|
|
(synopsis
|
|
|
|
|
"Hierarchical, reference counted memory pool system (static library)")
|
|
|
|
|
(arguments
|
|
|
|
|
(substitute-keyword-arguments (package-arguments talloc)
|
|
|
|
|
((#:phases phases)
|
|
|
|
|
;; Since Waf, the build system talloc uses, apparently does not
|
|
|
|
|
;; support building static libraries from a ./configure flag, roll our
|
|
|
|
|
;; own build process. No need to be ashamed, we're not the only ones
|
|
|
|
|
;; doing that:
|
|
|
|
|
;; <https://github.com/proot-me/proot-static-build/blob/master/GNUmakefile>.
|
|
|
|
|
;; :-)
|
|
|
|
|
`(modify-phases ,phases
|
|
|
|
|
(replace 'build
|
|
|
|
|
(lambda _
|
2019-01-25 07:39:12 -05:00
|
|
|
|
(invoke "gcc" "-c" "-Ibin/default" "-I" "lib/replace"
|
2019-03-02 09:07:10 -05:00
|
|
|
|
"-I." "-Wall" "-g" "-D__STDC_WANT_LIB_EXT1__=1"
|
|
|
|
|
"talloc.c")
|
2019-01-25 07:39:12 -05:00
|
|
|
|
(invoke "ar" "rc" "libtalloc.a" "talloc.o")))
|
2017-05-12 05:53:08 -04:00
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(lib (string-append out "/lib"))
|
|
|
|
|
(include (string-append out "/include")))
|
|
|
|
|
(mkdir-p lib)
|
|
|
|
|
(install-file "libtalloc.a" lib)
|
|
|
|
|
(install-file "talloc.h" include)
|
|
|
|
|
#t)))
|
|
|
|
|
(delete 'check))))))) ;XXX: tests rely on Python modules
|
|
|
|
|
|
2015-12-14 23:17:07 -05:00
|
|
|
|
(define-public tevent
|
|
|
|
|
(package
|
|
|
|
|
(name "tevent")
|
2019-12-23 20:55:49 -05:00
|
|
|
|
(version "0.10.2")
|
2015-12-14 23:17:07 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://www.samba.org/ftp/tevent/tevent-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-12-23 20:55:49 -05:00
|
|
|
|
"15k6i8ad5lpxfjsjyq9h64zlyws8d3cm0vwdnaw8z1xjwli7hhpq"))))
|
2015-12-14 23:17:07 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
;; tevent uses a custom configuration script that runs waf.
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
2019-01-25 07:42:58 -05:00
|
|
|
|
(invoke "./configure"
|
|
|
|
|
(string-append "--prefix=" out)
|
|
|
|
|
"--bundled-libraries=NONE")))))))
|
2015-12-14 23:17:07 -05:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
2019-03-02 09:07:34 -05:00
|
|
|
|
("python" ,python)
|
|
|
|
|
("which" ,which)))
|
2015-12-14 23:17:07 -05:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("talloc" ,talloc))) ; required by tevent.pc
|
|
|
|
|
(synopsis "Event system library")
|
|
|
|
|
(home-page "https://tevent.samba.org/")
|
|
|
|
|
(description
|
|
|
|
|
"Tevent is an event system based on the talloc memory management library.
|
|
|
|
|
It is the core event system used in Samba. The low level tevent has support for
|
|
|
|
|
many event types, including timers, signals, and the classic file descriptor events.")
|
|
|
|
|
(license lgpl3+)))
|
|
|
|
|
|
2015-12-14 23:19:26 -05:00
|
|
|
|
(define-public ldb
|
|
|
|
|
(package
|
|
|
|
|
(name "ldb")
|
2020-01-16 11:35:41 -05:00
|
|
|
|
(version "1.5.6")
|
2015-12-14 23:19:26 -05:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://www.samba.org/ftp/ldb/ldb-"
|
|
|
|
|
version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2020-01-16 11:35:41 -05:00
|
|
|
|
"0nwpkqidsna4yz3vhjzzadm4hpviwnyk80yml8ay82gi1d6lg0pz"))
|
2018-05-31 09:46:17 -04:00
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
|
|
|
|
(for-each (lambda (file)
|
|
|
|
|
;; Delete everything except the build tools.
|
|
|
|
|
(unless (or (string-prefix? "third_party/waf" file)
|
|
|
|
|
(string-suffix? "wscript" file))
|
|
|
|
|
(delete-file file)))
|
|
|
|
|
(find-files "third_party"))
|
|
|
|
|
#t))))
|
2015-12-14 23:19:26 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2018-06-12 13:51:23 -04:00
|
|
|
|
'(;; LMDB is only supported on 64-bit systems, yet the test suite
|
|
|
|
|
;; requires it.
|
|
|
|
|
#:tests? (assoc-ref %build-inputs "lmdb")
|
|
|
|
|
#:phases
|
2015-12-14 23:19:26 -05:00
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
;; ldb use a custom configuration script that runs waf.
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
2019-01-25 07:44:13 -05:00
|
|
|
|
(invoke "./configure"
|
|
|
|
|
(string-append "--prefix=" out)
|
|
|
|
|
(string-append "--with-modulesdir=" out
|
|
|
|
|
"/lib/ldb/modules")
|
|
|
|
|
"--bundled-libraries=NONE")))))))
|
2015-12-14 23:19:26 -05:00
|
|
|
|
(native-inputs
|
2017-07-23 08:24:28 -04:00
|
|
|
|
`(("cmocka" ,cmocka)
|
|
|
|
|
("pkg-config" ,pkg-config)
|
2019-03-02 09:05:05 -05:00
|
|
|
|
("python" ,python)
|
|
|
|
|
("which" ,which)))
|
2015-12-14 23:19:26 -05:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
;; ldb.pc refers to all these.
|
|
|
|
|
`(("talloc" ,talloc)
|
|
|
|
|
("tdb" ,tdb)))
|
|
|
|
|
(inputs
|
2018-06-12 13:51:23 -04:00
|
|
|
|
`(,@(if (target-64bit?)
|
|
|
|
|
`(("lmdb" ,lmdb))
|
|
|
|
|
'())
|
2018-12-04 10:21:56 -05:00
|
|
|
|
("popt" ,popt)
|
2015-12-14 23:19:26 -05:00
|
|
|
|
("tevent" ,tevent)))
|
|
|
|
|
(synopsis "LDAP-like embedded database")
|
|
|
|
|
(home-page "https://ldb.samba.org/")
|
|
|
|
|
(description
|
|
|
|
|
"Ldb is a LDAP-like embedded database built on top of TDB. What ldb does
|
|
|
|
|
is provide a fast database with an LDAP-like API designed to be used within an
|
|
|
|
|
application. In some ways it can be seen as a intermediate solution between
|
|
|
|
|
key-value pair databases and a real LDAP database.")
|
|
|
|
|
(license lgpl3+)))
|
|
|
|
|
|
2015-11-15 22:16:16 -05:00
|
|
|
|
(define-public ppp
|
2021-01-06 07:06:00 -05:00
|
|
|
|
(package
|
|
|
|
|
(name "ppp")
|
|
|
|
|
(version "2.4.9")
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/paulusmack/ppp")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1bhhksdclsnkw54a517ndrw55q5zljjbh9pcqz1z4a2z2flxpsgk"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:tests? #f ; no check target
|
|
|
|
|
#:make-flags '("CC=gcc")
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'patch-Makefile
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let ((libc (assoc-ref inputs "libc"))
|
|
|
|
|
(openssl (assoc-ref inputs "openssl"))
|
|
|
|
|
(libpcap (assoc-ref inputs "libpcap")))
|
|
|
|
|
(substitute* "pppd/Makefile.linux"
|
|
|
|
|
(("/usr/include/crypt\\.h")
|
|
|
|
|
(string-append libc "/include/crypt.h"))
|
|
|
|
|
(("/usr/include/openssl")
|
|
|
|
|
(string-append openssl "/include/openssl"))
|
|
|
|
|
(("/usr/include/pcap-bpf.h")
|
|
|
|
|
(string-append libpcap "/include/pcap-bpf.h")))
|
|
|
|
|
#t))))))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libpcap" ,libpcap)
|
|
|
|
|
("openssl" ,(@ (gnu packages tls) openssl))))
|
|
|
|
|
(synopsis "Implementation of the Point-to-Point Protocol")
|
|
|
|
|
(home-page "https://ppp.samba.org/")
|
|
|
|
|
(description
|
|
|
|
|
"The Point-to-Point Protocol (PPP) provides a standard way to establish
|
2015-11-15 22:16:16 -05:00
|
|
|
|
a network connection over a serial link. At present, this package supports IP
|
|
|
|
|
and IPV6 and the protocols layered above them, such as TCP and UDP.")
|
2021-01-06 07:06:00 -05:00
|
|
|
|
;; pppd, pppstats and pppdump are under BSD-style notices.
|
|
|
|
|
;; some of the pppd plugins are GPL'd.
|
|
|
|
|
;; chat is public domain.
|
|
|
|
|
(license (list bsd-3 bsd-4 gpl2+ public-domain))))
|
2020-03-07 08:10:37 -05:00
|
|
|
|
|