2013-02-12 13:35:54 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2021-11-17 17:57:49 -05:00
|
|
|
|
;;; Copyright © 2013, 2015, 2017, 2021 Ludovic Courtès <ludo@gnu.org>
|
2015-02-26 02:01:29 -05:00
|
|
|
|
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
2021-08-04 09:07:13 -04:00
|
|
|
|
;;; Copyright © 2016, 2017, 2019, 2021 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>
|
2022-01-09 21:51:47 -05:00
|
|
|
|
;;; Copyright © 2020, 2022 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)
|
2022-01-09 21:51:47 -05:00
|
|
|
|
#:use-module (guix gexp)
|
2013-02-12 13:35:54 -05:00
|
|
|
|
#: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)
|
2022-01-09 21:51:47 -05:00
|
|
|
|
#:use-module (gnu packages python-crypto)
|
2021-10-03 20:25:14 -04:00
|
|
|
|
#:use-module (gnu packages python-xyz)
|
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-10-03 20:26:29 -04:00
|
|
|
|
(version "6.14")
|
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-10-03 20:26:29 -04:00
|
|
|
|
"1f2n0yzqsy5v5qv83731bi0mi86rrh11z8qjy1gjj8al9c3yh2b6"))))
|
2017-03-30 11:47:00 -04:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(native-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list autoconf automake pkg-config
|
|
|
|
|
;; To generate the manpages.
|
|
|
|
|
python-docutils)) ; rst2man
|
2017-03-30 11:47:00 -04:00
|
|
|
|
(inputs
|
|
|
|
|
`(("keytuils" ,keyutils)
|
|
|
|
|
("linux-pam" ,linux-pam)
|
|
|
|
|
("libcap-ng" ,libcap-ng)
|
|
|
|
|
("mit-krb5" ,mit-krb5)
|
|
|
|
|
("samba" ,samba)
|
|
|
|
|
("talloc" ,talloc)))
|
|
|
|
|
(arguments
|
2021-10-03 20:25:14 -04:00
|
|
|
|
`(#:configure-flags
|
|
|
|
|
(list "--enable-man")
|
|
|
|
|
#:phases
|
2017-03-30 11:47:00 -04:00
|
|
|
|
(modify-phases %standard-phases
|
2021-10-03 20:34:18 -04:00
|
|
|
|
(add-before 'bootstrap 'trigger-bootstrap
|
|
|
|
|
;; The shipped configure script is buggy, e.g., it contains a
|
|
|
|
|
;; unexpanded literal ‘LIBCAP_NG_PATH’ line).
|
|
|
|
|
(lambda _
|
|
|
|
|
(delete-file "configure")))
|
2017-03-30 11:47:00 -04:00
|
|
|
|
(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"
|
2021-10-03 20:25:14 -04:00
|
|
|
|
(string-append (assoc-ref outputs "out") "/sbin"))))
|
|
|
|
|
(add-before 'install 'install-man-pages
|
2019-12-23 17:12:42 -05:00
|
|
|
|
;; Create a directory that isn't created since version 6.10.
|
2021-10-03 20:25:14 -04:00
|
|
|
|
(lambda* (#:key make-flags parallel-build? #:allow-other-keys)
|
|
|
|
|
(apply invoke "make" "install-man"
|
|
|
|
|
`(,@(if parallel-build?
|
|
|
|
|
`("-j" ,(number->string (parallel-job-count)))
|
|
|
|
|
'())
|
|
|
|
|
,@make-flags)))))))
|
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
|
2021-10-03 20:48:15 -04:00
|
|
|
|
mounting and managing @acronym{CIFS, Common Internet File System} shares using
|
2017-03-30 11:47:00 -04:00
|
|
|
|
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")
|
2022-02-07 17:46:39 -05:00
|
|
|
|
(version "4.15.5")
|
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
|
2022-02-07 17:46:39 -05:00
|
|
|
|
(base32 "0zyid2np45kl8hzp9fjqwvn5lxj766a4f0mya58vldqrhcrmw4b9"))))
|
2013-02-12 13:35:54 -05:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2022-01-09 21:51:47 -05:00
|
|
|
|
(list
|
|
|
|
|
#:make-flags #~(list "TEST_OPTIONS=--quick") ;some tests are very long
|
|
|
|
|
#:phases
|
|
|
|
|
#~(modify-phases %standard-phases
|
|
|
|
|
(add-before 'configure 'setup-docbook-stylesheets
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
;; 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")))))
|
|
|
|
|
(replace 'configure
|
|
|
|
|
;; Samba uses a custom configuration script that runs WAF.
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let* ((libdir (string-append #$output "/lib")))
|
|
|
|
|
(invoke "./configure"
|
|
|
|
|
"--enable-selftest"
|
|
|
|
|
"--enable-fhs"
|
|
|
|
|
(string-append "--prefix=" #$output)
|
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
|
"--localstatedir=/var"
|
|
|
|
|
;; Install public and private libraries into
|
|
|
|
|
;; a single directory to avoid RPATH issues.
|
|
|
|
|
(string-append "--libdir=" libdir)
|
|
|
|
|
(string-append "--with-privatelibdir=" libdir)
|
|
|
|
|
"--with-system-mitkrb5" ;#$(this-package-input "mit-krb5")
|
|
|
|
|
(string-append "--with-system-mitkdc="
|
|
|
|
|
(search-input-file inputs "sbin/krb5kdc"))
|
|
|
|
|
"--with-experimental-mit-ad-dc"))))
|
|
|
|
|
(add-before 'install 'disable-etc,var-samba-directories-setup
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "dynconfig/wscript"
|
|
|
|
|
(("bld\\.INSTALL_DIR.*") "")))))
|
|
|
|
|
;; FIXME: The test suite seemingly hangs after failing to provision the
|
|
|
|
|
;; test environment.
|
|
|
|
|
#:tests? #f))
|
2020-11-02 17:03:57 -05:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list acl
|
|
|
|
|
cmocka
|
|
|
|
|
cups
|
|
|
|
|
gamin
|
|
|
|
|
dbus
|
|
|
|
|
gpgme
|
|
|
|
|
gnutls
|
|
|
|
|
jansson
|
|
|
|
|
libarchive
|
|
|
|
|
libtirpc
|
|
|
|
|
linux-pam
|
|
|
|
|
lmdb
|
2022-01-09 21:51:47 -05:00
|
|
|
|
mit-krb5
|
2021-12-13 11:18:24 -05:00
|
|
|
|
openldap
|
|
|
|
|
perl
|
|
|
|
|
python
|
|
|
|
|
popt
|
|
|
|
|
readline
|
|
|
|
|
tdb))
|
2018-05-02 08:42:49 -04:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
;; In Requires or Requires.private of pkg-config files.
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list ldb talloc tevent))
|
2015-12-14 23:20:26 -05:00
|
|
|
|
(native-inputs
|
2022-01-09 21:51:47 -05:00
|
|
|
|
(list perl-parse-yapp
|
|
|
|
|
pkg-config
|
|
|
|
|
python-cryptography ;for krb5 tests
|
|
|
|
|
python-dnspython
|
|
|
|
|
python-iso8601
|
|
|
|
|
python-markdown
|
|
|
|
|
rpcsvc-proto ;for 'rpcgen'
|
|
|
|
|
python-pyasn1 ;for krb5 tests
|
|
|
|
|
;; For generating man pages.
|
|
|
|
|
docbook-xml-4.2
|
|
|
|
|
docbook-xsl
|
|
|
|
|
libxslt
|
|
|
|
|
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
|
|
|
|
|
2021-11-17 17:57:49 -05:00
|
|
|
|
(define-public samba/fixed
|
|
|
|
|
;; Version that rarely changes, depended on by libsoup.
|
2022-01-09 21:51:47 -05:00
|
|
|
|
(hidden-package
|
|
|
|
|
(package/inherit samba
|
|
|
|
|
(version "4.15.3")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://download.samba.org/pub/samba/stable/"
|
|
|
|
|
"samba-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1nrp85aya0pbbqdqjaqcw82cnzzys16yls37hi2h6mci8d09k4si")))))))
|
2021-11-17 17:57:49 -05:00
|
|
|
|
|
2014-04-06 12:25:57 -04:00
|
|
|
|
(define-public talloc
|
|
|
|
|
(package
|
|
|
|
|
(name "talloc")
|
2021-08-04 09:29:52 -04:00
|
|
|
|
(version "2.3.3")
|
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-08-04 09:29:52 -04:00
|
|
|
|
"1ala3l6v8qk2pwq97z1zdkj1isnfnrp1923srp2g22mxd0impsbb"))))
|
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
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list which))
|
2014-04-06 12:25:57 -04:00
|
|
|
|
(inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list 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")
|
2021-08-04 09:07:13 -04:00
|
|
|
|
(version "0.11.0")
|
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
|
2021-08-04 09:07:13 -04:00
|
|
|
|
"1fl2pj4p8p5fa2laykwf1sfjdw7pkw9slklj3vzc5ah8x348d6pf"))))
|
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
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list cmocka pkg-config python which))
|
2015-12-14 23:17:07 -05:00
|
|
|
|
(propagated-inputs
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list talloc)) ; required by tevent.pc
|
2015-12-14 23:17:07 -05:00
|
|
|
|
(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")
|
2021-11-02 18:44:50 -04:00
|
|
|
|
(version "2.4.1")
|
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
|
2021-11-02 18:44:50 -04:00
|
|
|
|
"13yd7lavbx8bxwnmzl0j7xnl2gl4wmnn0q9g7n3y7bvbnhm07hb9"))
|
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)))
|
2021-11-02 18:44:50 -04:00
|
|
|
|
(find-files "third_party"))))))
|
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
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list cmocka pkg-config python which))
|
2015-12-14 23:19:26 -05:00
|
|
|
|
(propagated-inputs
|
|
|
|
|
;; ldb.pc refers to all these.
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list talloc tdb))
|
2015-12-14 23:19:26 -05:00
|
|
|
|
(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
|
2021-12-13 11:18:24 -05:00
|
|
|
|
(list libpcap
|
|
|
|
|
(@ (gnu packages tls) openssl)))
|
2021-01-06 07:06:00 -05:00
|
|
|
|
(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
|
|
|
|
|