2020-03-21 11:17:11 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2019 Ricardo Wurmus <rekado@elephly.net>
|
|
|
|
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
2020-03-21 11:33:15 +00:00
|
|
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
2020-03-21 11:17:11 +00:00
|
|
|
;;;
|
|
|
|
;;; 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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages rpc)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix git-download)
|
2020-03-21 11:20:14 +00:00
|
|
|
#:use-module (guix download)
|
2020-03-21 11:17:11 +00:00
|
|
|
#:use-module (guix build-system cmake)
|
2020-03-21 11:20:14 +00:00
|
|
|
#:use-module (guix build-system python)
|
2020-03-21 11:17:11 +00:00
|
|
|
#:use-module (gnu packages adns)
|
|
|
|
#:use-module (gnu packages compression)
|
2020-03-21 11:33:15 +00:00
|
|
|
#:use-module (gnu packages cpp)
|
2020-03-21 11:17:11 +00:00
|
|
|
#:use-module (gnu packages protobuf)
|
|
|
|
#:use-module (gnu packages python)
|
2020-03-21 11:20:14 +00:00
|
|
|
#:use-module (gnu packages python-xyz)
|
2020-03-21 11:17:11 +00:00
|
|
|
#:use-module (gnu packages tls))
|
|
|
|
|
|
|
|
(define-public grpc
|
|
|
|
(package
|
|
|
|
(name "grpc")
|
2020-03-21 11:33:15 +00:00
|
|
|
(version "1.27.3")
|
2020-03-21 11:17:11 +00:00
|
|
|
(outputs '("out" "static"))
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/grpc/grpc.git")
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-03-21 11:33:15 +00:00
|
|
|
"0czmbwnafc7jnrrq2fnac2av83vs2q7q0wy4k11w9zbpld7j5h6d"))))
|
2020-03-21 11:17:11 +00:00
|
|
|
(build-system cmake-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no test target
|
|
|
|
#:configure-flags
|
|
|
|
(list "-DgRPC_ZLIB_PROVIDER=package"
|
2020-03-21 11:33:15 +00:00
|
|
|
"-DgRPC_ABSL_PROVIDER=package"
|
2020-03-21 11:17:11 +00:00
|
|
|
"-DgRPC_CARES_PROVIDER=package"
|
|
|
|
"-DgRPC_SSL_PROVIDER=package"
|
|
|
|
"-DgRPC_PROTOBUF_PROVIDER=package"
|
|
|
|
(string-append "-DCMAKE_INSTALL_PREFIX="
|
|
|
|
(assoc-ref %outputs "out"))
|
|
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
|
|
(string-append "-DCMAKE_INSTALL_RPATH="
|
|
|
|
(assoc-ref %outputs "out") "/lib")
|
|
|
|
"-DCMAKE_VERBOSE_MAKEFILE=ON")
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-before 'configure 'configure-shared
|
|
|
|
(lambda* (#:key (configure-flags '()) #:allow-other-keys)
|
|
|
|
(mkdir "../build-shared")
|
|
|
|
(with-directory-excursion "../build-shared"
|
|
|
|
(apply invoke
|
|
|
|
"cmake" "../source"
|
|
|
|
"-DBUILD_SHARED_LIBS=ON"
|
|
|
|
configure-flags)
|
|
|
|
(apply invoke "make"
|
|
|
|
`("-j" ,(number->string (parallel-job-count)))))))
|
|
|
|
(add-after 'install 'install-shared-libraries
|
|
|
|
(lambda _
|
|
|
|
(with-directory-excursion "../build-shared"
|
|
|
|
(invoke "make" "install"))))
|
|
|
|
(add-before 'strip 'move-static-libs
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
(static (assoc-ref outputs "static")))
|
|
|
|
(mkdir-p (string-append static "/lib"))
|
|
|
|
(with-directory-excursion
|
|
|
|
(string-append out "/lib")
|
|
|
|
(for-each
|
|
|
|
(lambda (file)
|
|
|
|
(rename-file file
|
|
|
|
(string-append static "/lib/" file)))
|
|
|
|
(find-files "." "\\.a$"))))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
2020-03-21 11:33:15 +00:00
|
|
|
`(("abseil-cpp" ,abseil-cpp)
|
|
|
|
("c-ares" ,c-ares/cmake)
|
2020-03-21 11:17:11 +00:00
|
|
|
("openssl" ,openssl)
|
|
|
|
("zlib" ,zlib)))
|
|
|
|
(native-inputs
|
|
|
|
`(("protobuf" ,protobuf)
|
|
|
|
("python" ,python-wrapper)))
|
|
|
|
(home-page "https://grpc.io")
|
|
|
|
(synopsis "High performance universal RPC framework")
|
|
|
|
(description "gRPC is a modern high performance @dfn{Remote Procedure Call}
|
|
|
|
(RPC) framework that can run in any environment. It can efficiently connect
|
|
|
|
services in and across data centers with pluggable support for load balancing,
|
|
|
|
tracing, health checking and authentication. It is also applicable in last
|
|
|
|
mile of distributed computing to connect devices, mobile applications and
|
|
|
|
browsers to backend services.")
|
|
|
|
(license license:asl2.0)))
|
2020-03-21 11:20:14 +00:00
|
|
|
|
2020-03-21 11:33:15 +00:00
|
|
|
;; Some packages require this older version.
|
|
|
|
(define-public grpc-1.16.1
|
|
|
|
(package
|
|
|
|
(inherit grpc)
|
|
|
|
(version "1.16.1")
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/grpc/grpc.git")
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name "grpc" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1jimqz3115f9pli5w6ik9wi7mjc7ix6y7yrq4a1ab9fc3dalj7p2"))))))
|
|
|
|
|
2020-03-21 11:20:14 +00:00
|
|
|
(define-public python-grpcio
|
|
|
|
(package
|
|
|
|
(name "python-grpcio")
|
2020-03-21 11:46:13 +00:00
|
|
|
(version "1.27.2")
|
2020-03-21 11:20:14 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (pypi-uri "grpcio" version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2020-03-21 11:46:13 +00:00
|
|
|
"0zl89jwcff9hkd8mi4yf3qbhns9vbv1s4x4vahm5mkpr7jwk5ras"))
|
|
|
|
(modules '((guix build utils) (ice-9 ftw)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
(with-directory-excursion "third_party"
|
|
|
|
;; Delete the bundled source code of libraries that are possible
|
|
|
|
;; to provide as inputs.
|
|
|
|
(for-each delete-file-recursively
|
|
|
|
(scandir "."
|
|
|
|
(lambda (file)
|
|
|
|
(not (member file
|
|
|
|
'("." ".."
|
|
|
|
"abseil-cpp"
|
|
|
|
"address_sorting"
|
|
|
|
"upb")))))))
|
|
|
|
#t))))
|
2020-03-21 11:20:14 +00:00
|
|
|
(build-system python-build-system)
|
2020-03-21 11:46:13 +00:00
|
|
|
(arguments
|
|
|
|
'(#:phases (modify-phases %standard-phases
|
|
|
|
(add-before 'build 'use-system-libraries
|
|
|
|
(lambda _
|
|
|
|
(setenv "GRPC_PYTHON_BUILD_SYSTEM_CARES" "1")
|
|
|
|
(setenv "GRPC_PYTHON_BUILD_SYSTEM_OPENSSL" "1")
|
|
|
|
(setenv "GRPC_PYTHON_BUILD_SYSTEM_ZLIB" "1")
|
|
|
|
#t))
|
|
|
|
(add-before 'build 'configure-compiler
|
|
|
|
(lambda _
|
|
|
|
(substitute* '("setup.py" "src/python/grpcio/commands.py")
|
|
|
|
(("'cc'") "'gcc'"))
|
|
|
|
#t)))))
|
|
|
|
(inputs
|
|
|
|
`(("c-ares" ,c-ares)
|
|
|
|
("openssl" ,openssl)
|
|
|
|
("zlib" ,zlib)))
|
2020-03-21 11:20:14 +00:00
|
|
|
(propagated-inputs
|
|
|
|
`(("python-six" ,python-six)))
|
|
|
|
(home-page "https://grpc.io")
|
|
|
|
(synopsis "HTTP/2-based RPC framework")
|
|
|
|
(description "This package provides a Python library for communicating
|
|
|
|
with the HTTP/2-based RPC framework gRPC.")
|
|
|
|
(license license:asl2.0)))
|