mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add protobuf-next.
* gnu/packages/protobuf.scm (protobuf-next): New variable.
This commit is contained in:
parent
e2931e9979
commit
c22c803efc
1 changed files with 14 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
|||
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2016 Daniel Pimentel <d4n1@d4n1.org>
|
||||
;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
|
@ -109,6 +109,19 @@ (define-public protobuf
|
|||
internal RPC protocols and file formats.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public protobuf-next
|
||||
(package (inherit protobuf)
|
||||
(name "protobuf")
|
||||
(version "3.6.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/google/protobuf/releases/"
|
||||
"download/v" version "/protobuf-cpp-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0a955bz59ihrb5wg7dwi12xajdi5pmz4bl0g147rbdwv393jwwxk"))))))
|
||||
|
||||
;; XXX Remove this old version when no other packages depend on it.
|
||||
(define-public protobuf-2
|
||||
(package (inherit protobuf)
|
||||
|
|
Loading…
Reference in a new issue