unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#52527] [PATCH 0/4] gnu: Add ghc-tidal.
@ 2021-12-15 22:58 Aleksandr Vityazev
  2021-12-15 23:01 ` [bug#52527] [PATCH 1/4] gnu: Add ghc-data-binary-ieee754 Aleksandr Vityazev
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Aleksandr Vityazev @ 2021-12-15 22:58 UTC (permalink / raw)
  To: 52527


Aleksandr Vityazev (4):
  gnu: Add ghc-data-binary-ieee754.
  gnu: Add ghc-hosc.
  gnu: Add ghc-microspec.
  gnu: Add ghc-tidal

 gnu/packages/haskell-xyz.scm | 83 +++++++++++++++++++++++++++++++++++-
 1 file changed, 82 insertions(+), 1 deletion(-)

-- 
2.34.0

-- 

Aleksandr Vityazev




^ permalink raw reply	[flat|nested] 5+ messages in thread

* [bug#52527] [PATCH 1/4] gnu: Add ghc-data-binary-ieee754.
  2021-12-15 22:58 [bug#52527] [PATCH 0/4] gnu: Add ghc-tidal Aleksandr Vityazev
@ 2021-12-15 23:01 ` Aleksandr Vityazev
  2021-12-15 23:01 ` [bug#52527] [PATCH 2/4] gnu: Add ghc-hosc Aleksandr Vityazev
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Aleksandr Vityazev @ 2021-12-15 23:01 UTC (permalink / raw)
  To: 52527

* gnu/packages/haskell-xyz.scm (ghc-data-binary-ieee754): New variable.
---
 gnu/packages/haskell-xyz.scm | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index f5d15bcc2f..476a2b98a6 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -3011,6 +3011,22 @@ (define-public ghc-data-ordlist
      "This module provides set and multiset operations on ordered lists.")
     (license license:bsd-3)))
 
+(define-public ghc-data-binary-ieee754
+  (package
+    (name "ghc-data-binary-ieee754")
+    (version "0.4.4")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (hackage-uri "data-binary-ieee754" version))
+       (sha256
+        (base32 "02nzg1barhqhpf4x26mpzvk7jd29nali033qy01adjplv2z5m5sr"))))
+    (build-system haskell-build-system)
+    (home-page "https://john-millikin.com/software/")
+    (synopsis "Parser/Serialiser for IEEE-754 floating-point values")
+    (description "Convert Float and Decimal values to/from raw octets.")
+    (license license:expat)))
+
 (define-public ghc-dbus
   (package
     (name "ghc-dbus")
@@ -16026,4 +16042,3 @@ (define-public ghc-singleton-bool
     (description
      "This package provides Type-level booleans.")
     (license license:bsd-3)))
-
-- 
2.34.0



-- 

Aleksandr Vityazev




^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#52527] [PATCH 2/4] gnu: Add ghc-hosc.
  2021-12-15 22:58 [bug#52527] [PATCH 0/4] gnu: Add ghc-tidal Aleksandr Vityazev
  2021-12-15 23:01 ` [bug#52527] [PATCH 1/4] gnu: Add ghc-data-binary-ieee754 Aleksandr Vityazev
@ 2021-12-15 23:01 ` Aleksandr Vityazev
  2021-12-15 23:01 ` [bug#52527] [PATCH 3/4] gnu: Add ghc-microspec Aleksandr Vityazev
  2021-12-15 23:01 ` [bug#52527] [PATCH 4/4] gnu: Add ghc-tidal Aleksandr Vityazev
  3 siblings, 0 replies; 5+ messages in thread
From: Aleksandr Vityazev @ 2021-12-15 23:01 UTC (permalink / raw)
  To: 52527

* gnu/packages/haskell-xyz.scm (ghc-hosc): New variable.
---
 gnu/packages/haskell-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 476a2b98a6..5e009862d6 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -3027,6 +3027,26 @@ (define-public ghc-data-binary-ieee754
     (description "Convert Float and Decimal values to/from raw octets.")
     (license license:expat)))
 
+(define-public ghc-hosc
+  (package
+    (name "ghc-hosc")
+    (version "0.19.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (hackage-uri "hosc" version))
+       (sha256
+        (base32 "08q218p1skqxwa7f55nsgmv9z8digf1c0f1wi6p562q6d4i044z7"))))
+    (build-system haskell-build-system)
+    (inputs (list ghc-blaze-builder ghc-data-binary-ieee754 ghc-network))
+    (home-page "https://rohandrape.net/?t=hosc")
+    (synopsis "Haskell Open Sound Control")
+    (description
+     "This package provides Sound.OSC, a haskell module implementing a subset
+of the Open Sound Control byte protocol. @{hosc} is required by the @{hsc3}
+haskell @code{supercollider} bindings.")
+    (license license:gpl3)))
+
 (define-public ghc-dbus
   (package
     (name "ghc-dbus")
-- 
2.34.0



-- 

Aleksandr Vityazev




^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#52527] [PATCH 3/4] gnu: Add ghc-microspec.
  2021-12-15 22:58 [bug#52527] [PATCH 0/4] gnu: Add ghc-tidal Aleksandr Vityazev
  2021-12-15 23:01 ` [bug#52527] [PATCH 1/4] gnu: Add ghc-data-binary-ieee754 Aleksandr Vityazev
  2021-12-15 23:01 ` [bug#52527] [PATCH 2/4] gnu: Add ghc-hosc Aleksandr Vityazev
@ 2021-12-15 23:01 ` Aleksandr Vityazev
  2021-12-15 23:01 ` [bug#52527] [PATCH 4/4] gnu: Add ghc-tidal Aleksandr Vityazev
  3 siblings, 0 replies; 5+ messages in thread
From: Aleksandr Vityazev @ 2021-12-15 23:01 UTC (permalink / raw)
  To: 52527

* gnu/packages/haskell-xyz.scm (ghc-microspec): New variable.
---
 gnu/packages/haskell-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 5e009862d6..a253962142 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -3047,6 +3047,25 @@ (define-public ghc-hosc
 haskell @code{supercollider} bindings.")
     (license license:gpl3)))
 
+(define-public ghc-microspec
+  (package
+    (name "ghc-microspec")
+    (version "0.2.1.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (hackage-uri "microspec" version))
+       (sha256
+        (base32 "0615gdbsk7i3w71adjp69zabw4mli965wffm2h846hp6pjj31xcb"))))
+    (build-system haskell-build-system)
+    (inputs (list ghc-quickcheck))
+    (home-page "https://hackage.haskell.org/package/microspec")
+    (synopsis "Tiny QuickCheck test library with minimal dependencies")
+    (description
+     "A tiny, property-based and unit testing library with minimal
+dependencies.")
+    (license license:bsd-3)))
+
 (define-public ghc-dbus
   (package
     (name "ghc-dbus")
-- 
2.34.0



-- 

Aleksandr Vityazev




^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [bug#52527] [PATCH 4/4] gnu: Add ghc-tidal
  2021-12-15 22:58 [bug#52527] [PATCH 0/4] gnu: Add ghc-tidal Aleksandr Vityazev
                   ` (2 preceding siblings ...)
  2021-12-15 23:01 ` [bug#52527] [PATCH 3/4] gnu: Add ghc-microspec Aleksandr Vityazev
@ 2021-12-15 23:01 ` Aleksandr Vityazev
  3 siblings, 0 replies; 5+ messages in thread
From: Aleksandr Vityazev @ 2021-12-15 23:01 UTC (permalink / raw)
  To: 52527

* gnu/packages/haskell-xyz.scm (ghc-tidal): New variable.
---
 gnu/packages/haskell-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index a253962142..20e62d85c2 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -29,6 +29,7 @@
 ;;; Copyright © 2020 Carlo Holl <carloholl@gmail.com>
 ;;; Copyright © 2020 Christine Lemmer-Webber <cwebber@dustycloud.org>
 ;;; Copyright © 2021 Alice BRENON <alice.brenon@ens-lyon.fr>
+;;; Copyright © 2021 Aleksandr Vityazev <avityazev@posteo.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -3066,6 +3067,32 @@ (define-public ghc-microspec
 dependencies.")
     (license license:bsd-3)))
 
+(define-public ghc-tidal
+  (package
+    (name "ghc-tidal")
+    (version "1.7.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (hackage-uri "tidal" version))
+       (sha256
+        (base32 "0l8k4f89rhmvd0ys7klgi57k0313ki1vr256mkc60xc6a6gb3g93"))))
+    (build-system haskell-build-system)
+    (inputs
+     (list ghc-colour
+           ghc-hosc
+           ghc-network
+           ghc-bifunctors
+           ghc-clock
+           ghc-primitive
+           ghc-random))
+    (native-inputs (list ghc-microspec))
+    (home-page "https://tidalcycles.org/")
+    (synopsis "Pattern language for improvised music")
+    (description
+     "Tidal is a domain specific language for live coding patterns.")
+    (license license:gpl3+)))
+
 (define-public ghc-dbus
   (package
     (name "ghc-dbus")
-- 
2.34.0



-- 

Aleksandr Vityazev




^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-12-15 23:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-15 22:58 [bug#52527] [PATCH 0/4] gnu: Add ghc-tidal Aleksandr Vityazev
2021-12-15 23:01 ` [bug#52527] [PATCH 1/4] gnu: Add ghc-data-binary-ieee754 Aleksandr Vityazev
2021-12-15 23:01 ` [bug#52527] [PATCH 2/4] gnu: Add ghc-hosc Aleksandr Vityazev
2021-12-15 23:01 ` [bug#52527] [PATCH 3/4] gnu: Add ghc-microspec Aleksandr Vityazev
2021-12-15 23:01 ` [bug#52527] [PATCH 4/4] gnu: Add ghc-tidal Aleksandr Vityazev

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).