mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add arccon.
* gnu/packages/maths.scm (arccon): New variable. Change-Id: I9a4812d7ae0e5f93e710a0670271a19147f3af73 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
56344729cd
commit
db2ed54332
1 changed files with 28 additions and 0 deletions
|
@ -1583,6 +1583,34 @@ their deployment in massively parallel environments easy.")
|
||||||
;; Dual licensed, user choice.
|
;; Dual licensed, user choice.
|
||||||
(license (list license:lgpl3+ license:gpl3+))))
|
(license (list license:lgpl3+ license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public arccon
|
||||||
|
(package
|
||||||
|
(name "arccon")
|
||||||
|
(version "1.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/arcaneframework/framework")
|
||||||
|
(commit (string-append "arccon-v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0zvj863plifp4rs3wzq5z18vh7z3bh7zy90cvn12b6n0jbpfdpg3"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-before 'configure 'chdir-arccon
|
||||||
|
(lambda _
|
||||||
|
(chdir "arccon"))))))
|
||||||
|
(home-page "https://github.com/arcaneframework/framework")
|
||||||
|
(synopsis "Arcane Framework's CMake build libraries")
|
||||||
|
(description "Arccon is part of the Arcane framework, providing core
|
||||||
|
functionality for the Arcane development platform.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public gctp
|
(define-public gctp
|
||||||
(package
|
(package
|
||||||
(name "gctp")
|
(name "gctp")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue