Archived
1
0
Fork 0

gnu: protobuf: Update to 3.4.1.

* gnu/packages/protobuf.scm (protobuf): Update to 3.4.1.
This commit is contained in:
Ricardo Wurmus 2017-10-18 01:40:24 +02:00
parent b2850fd170
commit dd12d4aad0
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -2,6 +2,7 @@
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2016 Daniel Pimentel <d4n1@d4n1.org> ;;; Copyright © 2016 Daniel Pimentel <d4n1@d4n1.org>
;;; Copyright © 2016 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -32,15 +33,15 @@
(define-public protobuf (define-public protobuf
(package (package
(name "protobuf") (name "protobuf")
(version "2.6.1") (version "3.4.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://github.com/google/protobuf/releases/" (uri (string-append "https://github.com/google/protobuf/releases/"
"download/v" version "/protobuf-" "download/v" version "/protobuf-cpp-"
version ".tar.bz2")) version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"040rcs9fpv4bslhiy43v7dcrzakz4vwwpyqg4jp8bn24sl95ci7f")))) "0y6cr4l7bwa6zvjv5flzr4cx28shk5h8dz99xw90v8qih954pcrb"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("zlib" ,zlib))) (inputs `(("zlib" ,zlib)))
(home-page "https://github.com/google/protobuf") (home-page "https://github.com/google/protobuf")