me
/
guix
Archived
1
0
Fork 0

gnu: ruby-stackprof: Update to 0.2.17.

* gnu/packages/ruby.scm (ruby-stackprof): Update to 0.2.17.
[arguments]: Add a new 'build-tests phase.
master
Tobias Geerinckx-Rice 2021-07-25 23:43:38 +02:00
parent 3e8537c146
commit 900c2ca8f7
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 13 additions and 8 deletions

View File

@ -8,7 +8,7 @@
;;; Copyright © 2017 Nikita <nikita@n0.is>
;;; Copyright © 2017, 2019, 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2017, 2018, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017, 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017, 2018, 2020, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org>
;;; Copyright © 2017, 2018, 2019 Christopher Baines <mail@cbaines.net>
;;; Copyright © 2018 Vasile Dumitrascu <va511e@yahoo.com>
@ -7720,15 +7720,20 @@ navigation capabilities to @code{pry}, using @code{byebug}.")
(define-public ruby-stackprof
(package
(name "ruby-stackprof")
(version "0.2.16")
(version "0.2.17")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "stackprof" version))
(sha256
(base32
"147rb66p3n062vc433afqhkd99iazvkrqnghxgh871r62yhha93f"))))
(origin
(method url-fetch)
(uri (rubygems-uri "stackprof" version))
(sha256
(base32 "06lz70k8c0r7fyxk1nc3idh14x7nvsr21ydm1bsmbj00jyhmfzsn"))))
(build-system ruby-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'check 'build-tests
(lambda _
(invoke "rake" "compile"))))))
(native-inputs
`(("ruby-mocha" ,ruby-mocha)
("ruby-rake-compiler" ,ruby-rake-compiler)))