gnu: Add ruby-memory-profiler.

* gnu/packages/ruby.scm (ruby-memory-profiler): New variable.
This commit is contained in:
Efraim Flashner 2021-02-17 12:07:32 +02:00
parent 4f8c551cf3
commit f499e12486
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -7700,6 +7700,29 @@ (define-public ruby-ruby-prof
(home-page "https://github.com/ruby-prof/ruby-prof")
(license license:bsd-2)))
(define-public ruby-memory-profiler
(package
(name "ruby-memory-profiler")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/SamSaffron/memory_profiler")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"07yqv11q68xg2fqkrhs6ysngryk8b9zq6qzh24rgx9xqv6qfnj0w"))))
(build-system ruby-build-system)
(native-inputs
`(("ruby-rake" ,ruby-rake)))
(synopsis "Memory profiling routines for Ruby")
(description
"This package provides memory profiling routines for Ruby.")
(home-page "https://github.com/SamSaffron/memory_profiler")
(license license:expat)))
(define-public ruby-cucumber-messages
(package
(name "ruby-cucumber-messages")