mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add sobjectizer.
* gnu/packages/cpp.scm (sobjectizer): New variable.
This commit is contained in:
parent
d83bb7973b
commit
27bcdfcd65
1 changed files with 32 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||||
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
|
;;; Copyright © 2019 Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -375,3 +376,34 @@ (define-public cpplint
|
||||||
it's own version of the tool, this is a fork that aims to be more responsive
|
it's own version of the tool, this is a fork that aims to be more responsive
|
||||||
and make @code{cpplint} usable in wider contexts.")
|
and make @code{cpplint} usable in wider contexts.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public sobjectizer
|
||||||
|
(package
|
||||||
|
(name "sobjectizer")
|
||||||
|
(version "5.6.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/Stiffstream/sobjectizer.git")
|
||||||
|
(commit (string-append "v." version))))
|
||||||
|
(sha256
|
||||||
|
(base32 "0jfai7sqxnnjkms38krm7mssj5l79nb3pllkbyj4j581a7l5j6l5"))
|
||||||
|
(file-name (git-file-name name version))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'change-directory
|
||||||
|
(lambda _
|
||||||
|
(chdir "dev")
|
||||||
|
#t)))))
|
||||||
|
(home-page "https://stiffstream.com/en/products/sobjectizer.html")
|
||||||
|
(synopsis "Cross-platform actor framework for C++")
|
||||||
|
(description
|
||||||
|
"SObjectizer is a cross-platform \"actor frameworks\" for C++.
|
||||||
|
SObjectizer supports not only the Actor Model but also the Publish-Subscribe
|
||||||
|
Model and CSP-like channels. The goal of SObjectizer is to simplify
|
||||||
|
development of concurrent and multithreaded applications in C++.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
Loading…
Reference in a new issue