diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2023-07-23 18:38:05 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2024-02-24 16:42:41 +0100 |
commit | 4980cd1697276bfdfe26d90132d9e6e865f7b8e3 (patch) | |
tree | d2e0906839d7461f94e2a81f5ade6e8ca9433123 /gnu | |
parent | ea78441f9152a731025b8c13c02cb7093ad618fe (diff) | |
download | guix-4980cd1697276bfdfe26d90132d9e6e865f7b8e3.tar.gz guix-4980cd1697276bfdfe26d90132d9e6e865f7b8e3.zip |
gnu: Add ruby-pairing-heap.
* gnu/packages/ruby.scm (ruby-pairing-heap): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ruby.scm | 26 |
1 files changed, 26 insertions, 0 deletions
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") |