;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Marius Bakke ;;; ;;; 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 capnproto) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu)) (define-public capnproto (package (name "capnproto") (version "0.5.3") (source (origin (method url-fetch) (uri (string-append "https://capnproto.org/capnproto-c++-" version ".tar.gz")) (sha256 (base32 "1yvaadhgakskqq5wpv53hd6fc3pp17mrdldw4i5cvgck4iwprcfd")) (modules '((guix build utils))) (snippet ;; Workaround for test that tries to resolve port name from ;; /etc/services, which is not present in build environment. '(substitute* "src/kj/async-io-test.c++" ((":http") ":80"))))) (build-system gnu-build-system) (home-page "https://capnproto.org") (synopsis "Capability-based RPC and serialization system") (description "Cap'n Proto is a very fast data interchange format and capability-based RPC system. Think JSON, except binary. Or think Protocol Buffers, except faster.") (license license:expat)))