mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: symengine: Fix indentation.
* gnu/packages/algebra.scm (symengine): Fix indentation and apply small cosmetic fixes.
This commit is contained in:
parent
49a2a477c9
commit
af0307a099
1 changed files with 15 additions and 15 deletions
|
@ -954,17 +954,17 @@ (define-public symengine
|
||||||
(version "0.6.0")
|
(version "0.6.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/symengine/symengine.git")
|
(url "https://github.com/symengine/symengine.git")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "129iv9maabmb42ylfdv0l0g94mcbf3y4q3np175008rcqdr8z6h1"))))
|
(base32 "129iv9maabmb42ylfdv0l0g94mcbf3y4q3np175008rcqdr8z6h1"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(;; These are the suggested build options in the README.
|
'(#:configure-flags
|
||||||
#:configure-flags
|
;; These are the suggested build options in the README.
|
||||||
'("-DCMAKE_BUILD_TYPE=Release"
|
'("-DCMAKE_BUILD_TYPE=Release"
|
||||||
"-DWITH_GMP=on"
|
"-DWITH_GMP=on"
|
||||||
"-DWITH_MPFR=on"
|
"-DWITH_MPFR=on"
|
||||||
|
@ -972,7 +972,7 @@ (define-public symengine
|
||||||
"-DINTEGER_CLASS=flint"
|
"-DINTEGER_CLASS=flint"
|
||||||
"-DWITH_LLVM=on"
|
"-DWITH_LLVM=on"
|
||||||
"-DWITH_SYMENGINE_THREAD_SAFE=on"
|
"-DWITH_SYMENGINE_THREAD_SAFE=on"
|
||||||
"-DBUILD_SHARED_LIBS=on"))) ; also build libsymengine
|
"-DBUILD_SHARED_LIBS=on"))) ;also build libsymengine
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("llvm" ,llvm)))
|
`(("llvm" ,llvm)))
|
||||||
(inputs
|
(inputs
|
||||||
|
@ -982,11 +982,11 @@ (define-public symengine
|
||||||
("mpfr" ,mpfr)))
|
("mpfr" ,mpfr)))
|
||||||
(home-page "https://github.com/symengine/symengine")
|
(home-page "https://github.com/symengine/symengine")
|
||||||
(synopsis "Fast symbolic manipulation library")
|
(synopsis "Fast symbolic manipulation library")
|
||||||
(description "SymEngine is a standalone fast C++ symbolic manipulation
|
(description
|
||||||
library. Optional thin wrappers allow usage of the library from other
|
"SymEngine is a standalone fast C++ symbolic manipulation library.
|
||||||
languages.")
|
Optional thin wrappers allow usage of the library from other languages.")
|
||||||
(license (list license:expat ; SymEngine
|
(license (list license:expat ;SymEngine
|
||||||
license:bsd-3)))) ; 3rd party code
|
license:bsd-3)))) ;3rd party code
|
||||||
|
|
||||||
(define-public eigen
|
(define-public eigen
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue