diff options
author | Leo Famulari <leo@famulari.name> | 2016-07-29 16:02:45 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-07-29 16:41:06 -0400 |
commit | de30a6e0f0c5fdb27dfac5460e8efda1408667a4 (patch) | |
tree | 77f52419441a5ada21008b3ebabe16d0e099a95b | |
parent | da2d893e324fcdd4ab9e3ccdd62d7aab520da3b5 (diff) | |
download | guix-de30a6e0f0c5fdb27dfac5460e8efda1408667a4.tar.gz guix-de30a6e0f0c5fdb27dfac5460e8efda1408667a4.zip |
gnu: protobuf: Update to 2.6.1.
* gnu/packages/protobuf.scm (protobuf): Update to 2.6.1.
[source]: Update to new upstream URL.
-rw-r--r-- | gnu/packages/protobuf.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm index 86c418bb05..e1a3d8a6f1 100644 --- a/gnu/packages/protobuf.scm +++ b/gnu/packages/protobuf.scm @@ -32,14 +32,15 @@ (define-public protobuf (package (name "protobuf") - (version "2.5.0") + (version "2.6.1") (source (origin (method url-fetch) - (uri (string-append "http://protobuf.googlecode.com/files/protobuf-" + (uri (string-append "https://github.com/google/protobuf/releases/" + "download/v" version "/protobuf-" version ".tar.bz2")) (sha256 (base32 - "0xxn9gxhvsgzz2sgmihzf6pf75clr05mqj6218camwrwajpcbgqk")))) + "040rcs9fpv4bslhiy43v7dcrzakz4vwwpyqg4jp8bn24sl95ci7f")))) (build-system gnu-build-system) (inputs `(("zlib" ,zlib))) (home-page "http://code.google.com/p/protobuf/") |