[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/06: gnu: Add boost-sync.
From: |
Ludovic Courtès |
Subject: |
02/06: gnu: Add boost-sync. |
Date: |
Thu, 22 Mar 2018 07:55:54 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 7624300c84f404cdb4aa7473ff8cbcf4392eefb6
Author: Maxim Cournoyer <address@hidden>
Date: Sun Mar 4 22:50:04 2018 -0500
gnu: Add boost-sync.
* gnu/packages/boost.scm (boost-sync): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/boost.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index f4ba828..d347674 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -6,6 +6,7 @@
;;; Copyright © 2015 Ludovic Courtès <address@hidden>
;;; Copyright © 2017 Thomas Danckaert <address@hidden>
;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2018 Maxim Cournoyer <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -26,7 +27,10 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
+ #:use-module (guix git-download)
+ #:use-module (guix build utils)
#:use-module (guix build-system gnu)
+ #:use-module (guix build-system trivial)
#:use-module (gnu packages)
#:use-module (gnu packages compression)
#:use-module (gnu packages icu4c)
@@ -124,6 +128,38 @@ across a broad spectrum of applications.")
(base32
"1aaw48cmimsskzgiclwn0iifp62a5iw9cbqrhfari876af1828ap"))))))
+(define-public boost-sync
+ (let ((commit "c72891d9b90e2ceb466ec859f640cd012b2d8709")
+ (version "1.55")
+ (revision "1"))
+ (package
+ (name "boost-sync")
+ (version (git-version version revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/boostorg/sync.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "197mp5z048vz5kv1m4v3jm447l2gqsyv0rbfz11dz0ns343ihbyx"))))
+ (build-system trivial-build-system)
+ (arguments
+ `(#:modules ((guix build utils))
+ #:builder
+ (begin
+ (use-modules (guix build utils))
+ (let ((source (assoc-ref %build-inputs "source")))
+ (copy-recursively (string-append source "/include")
+ (string-append %output "/include"))))))
+ (home-page "https://github.com/boostorg/sync")
+ (synopsis "Boost.Sync library")
+ (description "The Boost.Sync library provides mutexes, semaphores, locks
+and events and other thread related facilities. Boost.Sync originated from
+Boost.Thread.")
+ (license (license:x11-style "http://www.boost.org/LICENSE_1_0.txt")))))
+
(define-public mdds
(package
(name "mdds")
- branch master updated (ca5b731 -> 04d2a16), Ludovic Courtès, 2018/03/22
- 01/06: doc: Add index entries for realtime and jackd in the manual., Ludovic Courtès, 2018/03/22
- 05/06: publish: Add test for non-GET queries., Ludovic Courtès, 2018/03/22
- 03/06: gnu: yaml-cpp: Update to 0.6.1., Ludovic Courtès, 2018/03/22
- 02/06: gnu: Add boost-sync.,
Ludovic Courtès <=
- 06/06: publish: Always build a new derivation for the "/log/NAME" test., Ludovic Courtès, 2018/03/22
- 04/06: gnu: Add supercollider., Ludovic Courtès, 2018/03/22