From f313baf0c890f69bf2db6ee9a9934024edb81f09 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 13 Mar 2019 14:26:08 +0100 Subject: gnu: Add r-pbdzmq. * gnu/packages/cran.scm (r-pbdzmq): New variable. --- gnu/packages/cran.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cebc92a627..2702e62a9a 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -58,6 +58,7 @@ #:use-module (gnu packages maths) #:use-module (gnu packages mpi) #:use-module (gnu packages multiprecision) + #:use-module (gnu packages networking) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) @@ -11522,3 +11523,31 @@ also provides tools for efficient random number generation and graphics.") boxplot/stripchart/violin plots. It can be used to plot univariate comparison graphs.") (license license:gpl2))) + +(define-public r-pbdzmq + (package + (name "r-pbdzmq") + (version "0.3-3") + (source + (origin + (method url-fetch) + (uri (cran-uri "pbdZMQ" version)) + (sha256 + (base32 + "1jkfcfhspvqra7vbllrvkz3jx8j7d0ang6zzcdjgpb7200sc29mf")))) + (properties `((upstream-name . "pbdZMQ"))) + (build-system r-build-system) + (inputs + `(("zeromq" ,zeromq) + ("zlib" ,zlib))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://pbdr.org/") + (synopsis "R interface to ZeroMQ") + (description + "ZeroMQ is a well-known library for high-performance asynchronous +messaging in scalable, distributed applications. This package provides high +level R wrapper functions to easily utilize ZeroMQ. The main focus is on +interactive client/server programming frameworks. A few wrapper functions +compatible with @code{rzmq} are also provided.") + (license license:gpl3))) -- cgit v1.2.3 t>
path: root/gnu/services/admin.scm
AgeCommit message (Expand)Author
2019-06-15services: Remove unneeded imports that led to cycles....Fixes <https://bugs.gnu.org/36207>. Reported by Jack Hill <jackhill@jackhill.us>. * gnu/services/admin.scm: Remove unneeded import of (gnu services base). * gnu/services/mcron.scm: Likewise. Ludovic Courtès
2018-12-23services: Fix typo in (gnu services admin)....* gnu/services/admin.scm: Fix typo in licence header. Tobias Geerinckx-Rice
2018-10-04services: rottlog: Use command strings in the mcron jobs....* gnu/services/admin.scm (default-jobs): Remove the lambda around "/…/bin/rottlog" to make "herd schedule mcron" more transparent (otherwise it just says "Lambda function"). Ludovic Courtès
2018-09-10services: tailon: Move to (gnu services web)....This allows (gnu services admin) to remain deeper in the module graph and to be used by (gnu services web). * gnu/services/admin.scm (<tailon-configuration-file>) (tailon-configuration-files-string) (tailon-configuration-file-compiler, <tailon-configuration>) (tailon-shepherd-service, %tailon-accounts) (tailon-service-type): Move to... * gnu/services/web.scm: ... here. * gnu/tests/admin.scm: Remove. Move test to... * gnu/tests/web.scm (%tailon-os) (run-tailon-test, %test-tailon): ... here. Ludovic Courtès
2018-03-22gnu: shepherd: Update to 0.4.0....* gnu/packages/admin.scm (shepherd): Update to 0.4.0. Remove patches. * gnu/packages/patches/shepherd-close-fds.patch, gnu/packages/patches/shepherd-herd-status-sorted.patch: Remove. * gnu/local.mk (dist_patch_DATA): Remove them. * gnu/services/admin.scm (%default-rotations): Remove /var/log/shepherd.log. Ludovic Courtès
2018-03-22services: rottlog: Add /var/log/debug to '%default-rotations'....* gnu/services/admin.scm (%rotated-files): Add "/var/log/debug". Ludovic Courtès