mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
gnu: Add ruby-cmath.
* gnu/packages/ruby.scm (ruby-cmath): New variable.
This commit is contained in:
parent
b7a5641ad7
commit
ac6914ca7d
1 changed files with 25 additions and 0 deletions
|
@ -12450,3 +12450,28 @@ (define-public ruby-taskjuggler
|
|||
management, status tracking and reporting.")
|
||||
(home-page "https://taskjuggler.org")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public ruby-cmath
|
||||
(package
|
||||
(name "ruby-cmath")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "cmath" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1xkz6xyhpkjbdvpdib8450w62rls1mjryz0gzbbnadxkxn82nb8m"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
`(#:tests? #false))
|
||||
(native-inputs
|
||||
`(("bundler" ,bundler)
|
||||
("ruby-rake-compiler" ,ruby-rake-compiler)))
|
||||
(synopsis "Trigonometric functions for complex numbers")
|
||||
(description
|
||||
"This gem is a library that provides trigonometric and transcendental
|
||||
functions for complex numbers. The functions in this module accept integers,
|
||||
floating-point numbers or complex numbers as arguments.")
|
||||
(home-page "https://github.com/ruby/cmath")
|
||||
(license license:bsd-2)))
|
||||
|
|
Loading…
Reference in a new issue