[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/11: gnu: Add nanomsg.
From: |
guix-commits |
Subject: |
01/11: gnu: Add nanomsg. |
Date: |
Sat, 4 Jul 2020 19:29:57 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit bb80d214523147f57ebfc968c3957ee497bf69a7
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Mon Jun 29 01:39:30 2020 -0400
gnu: Add nanomsg.
* gnu/packages/networking.scm (nanomsg): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/networking.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index af49b25..3bbee79 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -119,6 +119,7 @@
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages qt)
#:use-module (gnu packages readline)
+ #:use-module (gnu packages ruby)
#:use-module (gnu packages samba)
#:use-module (gnu packages serialization)
#:use-module (gnu packages sqlite)
@@ -131,6 +132,48 @@
#:use-module (gnu packages xml)
#:use-module (ice-9 match))
+(define-public nanomsg
+ (package
+ (name "nanomsg")
+ (version "1.1.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/nanomsg/nanomsg.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "01ddfzjlkf2dgijrmm3j3j8irccsnbgfvjcnwslsfaxnrmrq5s64"))))
+ (build-system cmake-build-system)
+ (outputs '("out" "doc"))
+ (arguments
+ `(#:configure-flags
+ (list
+ "-DNN_ENABLE_COVERAGE=ON")
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'move-docs
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out"))
+ (doc (assoc-ref outputs "doc")))
+ (mkdir-p (string-append doc "/share/doc"))
+ (rename-file
+ (string-append out "/share/doc/nanomsg")
+ (string-append doc "/share/doc/nanomsg"))
+ #t))))))
+ (native-inputs
+ `(("asciidoctor" ,ruby-asciidoctor)
+ ("pkg-config" ,pkg-config)))
+ (synopsis "Scalable socket library")
+ (description "Nanomsg is a socket library that provides several common
+communication patterns. It aims to make the networking layer fast, scalable,
+and easy to use. Implemented in C, it works on a wide range of operating
+systems with no further dependencies.")
+ (home-page "https://nanomsg.org/")
+ (license (license:non-copyleft "file:///COPYING"))))
+
(define-public blueman
(package
(name "blueman")
- branch wip-desktop updated (9326ffd -> 9e321ec), guix-commits, 2020/07/04
- 03/11: gnu: Add ccextractor., guix-commits, 2020/07/04
- 09/11: gnu: Add libtimidity., guix-commits, 2020/07/04
- 10/11: gnu: Add directfb., guix-commits, 2020/07/04
- 02/11: gnu: Add nng., guix-commits, 2020/07/04
- 11/11: gnu: Add faac., guix-commits, 2020/07/04
- 01/11: gnu: Add nanomsg.,
guix-commits <=
- 05/11: gnu: Add ruby-slim., guix-commits, 2020/07/04
- 04/11: gnu: Add libdc1394., guix-commits, 2020/07/04
- 06/11: gnu: Add libmpeg3., guix-commits, 2020/07/04
- 07/11: gnu: Add tslib., guix-commits, 2020/07/04
- 08/11: gnu: Add flux., guix-commits, 2020/07/04