;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Ludovic Courtès ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages protobuf) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module ((guix licenses) #:select (bsd-3)) #:use-module (gnu packages compression)) (define-public protobuf (package (name "protobuf") (version "2.5.0") (source (origin (method url-fetch) (uri (string-append "http://protobuf.googlecode.com/files/protobuf-" version ".tar.bz2")) (sha256 (base32 "0xxn9gxhvsgzz2sgmihzf6pf75clr05mqj6218camwrwajpcbgqk")))) (build-system gnu-build-system) (inputs `(("zlib" ,zlib))) (home-page "http://code.google.com/p/protobuf/") (synopsis "Data encoding for remote procedure calls (RPCs)") (description "Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats.") (license bsd-3))) n value='committer'>committer
AgeCommit message (Expand)Author
2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer
2024-08-18gnu: mecab-ipadic: Reduce irony....* gnu/packages/language.scm (mecab-ipadic)[description]: Fix typo. Change-Id: I8bf2dc7deb7479f4b8cdb3298cd82089ab67de8a Tobias Geerinckx-Rice
2024-01-21Merge branch 'master' into emacs-teamLiliana Marie Prikler
2023-11-01gnu: skktools: Build autoloads before installing them....* gnu/packages/language.scm (skktools)[#:phases]: Move ‘make-autoloads’ after ‘unpack’. Liliana Marie Prikler
2023-11-23gnu: praat: Update to 6.4....* gnu/packages/language.scm (praat): Update to 6.4. Change-Id: I6138e87781e007d5798a908a4b5ae5c0c3338b05 Signed-off-by: Christopher Baines <mail@cbaines.net> Preston M. Firestone