[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/05: gnu: Add rpcsvc-proto.
From: |
guix-commits |
Subject: |
01/05: gnu: Add rpcsvc-proto. |
Date: |
Fri, 12 Jul 2019 14:07:44 -0400 (EDT) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit 56174ade333eca022626abb7ce93a03c698229c3
Author: Marius Bakke <address@hidden>
Date: Sun Jun 16 08:21:11 2019 +0200
gnu: Add rpcsvc-proto.
* gnu/packages/onc-rpc.scm (rpcsvc-proto): New public variable.
---
gnu/packages/onc-rpc.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/onc-rpc.scm b/gnu/packages/onc-rpc.scm
index 9646fbf..d3149a4 100644
--- a/gnu/packages/onc-rpc.scm
+++ b/gnu/packages/onc-rpc.scm
@@ -3,6 +3,7 @@
;;; Copyright © 2016 John Darrington <address@hidden>
;;; Copyright © 2017, 2018 Leo Famulari <address@hidden>
;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2019 Marius Bakke <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -101,6 +102,26 @@ IPv4 and IPv6. ONC RPC is notably used by the network
file system (NFS).")
universal addresses.")
(license bsd-3)))
+(define-public rpcsvc-proto
+ (package
+ (name "rpcsvc-proto")
+ (version "1.4")
+ (home-page "https://github.com/thkukuk/rpcsvc-proto")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append home-page "/releases/download/v" version
+ "/rpcsvc-proto-" version ".tar.xz"))
+ (sha256
+ (base32
+ "0i93wbpw5dk2gf5v4a5hq6frh814wzgjydh7saj28wlgbpqdaja1"))))
+ (build-system gnu-build-system)
+ (synopsis "RPCSVC protocol definitions")
+ (description
+ "This package provides @code{rpcsvc} @file{protocol.x} files and headers
+that are not included with the @code{libtirpc} package. Additionally it
+contains @command{rpcgen}, which is used to produce header files and sources
+from the protocol files.")
+ (license bsd-3)))
(define-public libnsl
(package