From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pjotr Prins Subject: [PATCH] gnu: Add munge. Date: Mon, 08 Feb 2016 08:37:30 +0100 Message-ID: <56b845ba.pYVs87pulmHkueDY%pjotr.public12@thebird.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49127) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSgP1-0003h7-I2 for guix-devel@gnu.org; Mon, 08 Feb 2016 02:38:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aSgOy-0000NY-C4 for guix-devel@gnu.org; Mon, 08 Feb 2016 02:38:31 -0500 Received: from mail.thebird.nl ([95.154.246.10]:37536) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aSgOy-0000N5-6D for guix-devel@gnu.org; Mon, 08 Feb 2016 02:38:28 -0500 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/admin.scm (munge): New variable. --- gnu/packages/admin.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index eca4d92..2d934e3 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -7,6 +7,7 @@ ;;; Copyright =A9 2015 Alex Sassmannshausen ;;; Copyright =A9 2015 Eric Dvorsak ;;; Copyright =A9 2016 Leo Famulari +;;; Copyright =A9 2016 Pjotr Prins ;;; ;;; This file is part of GNU Guix. ;;; @@ -1427,3 +1428,28 @@ for CPU usage. It listens to network traffic on a= named interface and displays a table of current bandwidth usage by pairs of hosts.") (home-page "http://www.ex-parrot.com/~pdw/iftop/") (license license:gpl3))) + +(define-public munge + (package + (name "munge") + (version "0.5.11") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/dun/munge/archive/mu= nge-" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0njplyalwwqh7xr7xc7klc6x06mq0ak8w2pxh85w8n4hxkmqqnf5")))) + (inputs `(("openssl" ,openssl) + ("libgcrypt" ,libgcrypt))) + (build-system gnu-build-system) + (home-page "http://dun.github.io/munge/") + (synopsis "Cluster computing authentication service") + (description "Munge allows a process to authenticate the UID and +GID of another local or remote process within a group of hosts having +common users and groups. These hosts form a security realm that is +defined by a shared cryptographic key. Clients within this security +realm can create and validate credentials without the use of root +privileges, reserved ports, or platform-specific methods.") + (license license:gpl3+))) --=20 2.1.4