summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2021-12-26 22:16:01 +0100
committerSimon Streit <simon@netpanic.org>2022-01-06 00:10:09 +0100
commit1483d44e91a8f49a7b5a08bab135bf3d7feaa2c8 (patch)
tree34055039ee34f6f43436cfefc77a4e614dfd07b1
parent356d295055577f18c7d75c8e8ad2135046124849 (diff)
siguix: Add samba-mod.
* siguix/packages/samba.scm (samba-mod): New variable.
-rw-r--r--siguix/packages/samba.scm81
1 files changed, 81 insertions, 0 deletions
diff --git a/siguix/packages/samba.scm b/siguix/packages/samba.scm
new file mode 100644
index 0000000..0da0421
--- /dev/null
+++ b/siguix/packages/samba.scm
@@ -0,0 +1,81 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2021 Simon Streit <simon@netpanic.org>
+;;;
+;;; This file is NOT 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 (siguix packages samba)
+ #:use-module (guix packages)
+ #:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (guix build-system gnu)
+ #:use-module (guix licenses)
+ #:use-module (guix utils)
+ #:use-module (gnu packages)
+ #:use-module (gnu packages acl)
+ #:use-module (gnu packages admin)
+ #:use-module (gnu packages avahi)
+ #:use-module (gnu packages samba)
+ #:use-module (gnu packages autotools)
+ #:use-module (gnu packages backup)
+ #:use-module (gnu packages base)
+ #:use-module (gnu packages check)
+ #:use-module (gnu packages crypto)
+ #:use-module (gnu packages cups)
+ #:use-module (gnu packages databases)
+ #:use-module (gnu packages docbook)
+ #:use-module (gnu packages glib)
+ #:use-module (gnu packages gnome)
+ #:use-module (gnu packages gnupg)
+ #:use-module (gnu packages kerberos)
+ #:use-module (gnu packages linux)
+ #:use-module (gnu packages onc-rpc)
+ #:use-module (gnu packages openldap)
+ #:use-module (gnu packages perl)
+ #:use-module (gnu packages pkg-config)
+ #:use-module (gnu packages popt)
+ #:use-module (gnu packages python)
+ #:use-module (gnu packages python-xyz)
+ #:use-module (gnu packages readline)
+ #:use-module (gnu packages time)
+ #:use-module (gnu packages tls)
+ #:use-module (gnu packages web)
+ #:use-module (gnu packages xml))
+
+(define-public samba-mod
+ ;; Add avahi to inputs
+ (package/inherit samba
+ (name "samba-mod")
+ (inputs
+ (list acl
+ avahi ;new!
+ cmocka
+ cups
+ gamin
+ dbus
+ gpgme
+ gnutls
+ heimdal
+ jansson
+ libarchive
+ libtirpc
+ linux-pam
+ lmdb
+ openldap
+ perl
+ python
+ popt
+ readline
+ tdb))))