guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/28: gnu: Add ruby-pairing-heap.


From: guix-commits
Subject: 08/28: gnu: Add ruby-pairing-heap.
Date: Sat, 24 Feb 2024 10:51:09 -0500 (EST)

htgoebel pushed a commit to branch master
in repository guix.

commit 4980cd1697276bfdfe26d90132d9e6e865f7b8e3
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Sun Jul 23 18:38:05 2023 +0200

    gnu: Add ruby-pairing-heap.
    
    * gnu/packages/ruby.scm (ruby-pairing-heap): New variable.
---
 gnu/packages/ruby.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 38502c5976..cb26fc0ac5 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12051,6 +12051,32 @@ dependency, @code{pg}.")
     (home-page "https://github.com/QueueClassic/queue_classic";)
     (license license:expat)))
 
+(define-public ruby-pairing-heap
+  (package
+    (name "ruby-pairing-heap")
+    (version "3.1.0")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "pairing_heap" version))
+              (sha256
+               (base32
+                "059kqpw53cancnp0bp7y1s74y1955riw33w3lqfbnms4b4mdh5zj"))))
+    (build-system ruby-build-system)
+    (arguments
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-after 'unpack 'patch
+            (lambda _
+              (substitute* "Rakefile"
+                (("require \"standard/rake\"") "")
+                ((":\"standard:fix\",") "")))))))
+    (synopsis "Priority queue in pure Ruby")
+    (description "This package provides a performant priority queue in pure
+ruby with support for changing priority using pairing heap data structure")
+    (home-page "https://github.com/mhib/pairing_heap";)
+    (license license:expat)))
+
 (define-public ruby-ae
   (package
     (name "ruby-ae")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]