mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rpcsvc-proto.
* gnu/packages/onc-rpc.scm (rpcsvc-proto): New public variable.
This commit is contained in:
parent
07ace64143
commit
56174ade33
1 changed files with 21 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
;;; Copyright © 2016 John Darrington <jmd@gnu.org>
|
||||
;;; Copyright © 2017, 2018 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -101,6 +102,26 @@ (define-public rpcbind
|
|||
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
|
||||
|
|
Loading…
Reference in a new issue