mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add aris.
* gnu/packages/maths.scm(aris): New variable.
This commit is contained in:
parent
4f4bca0f10
commit
193abc8232
1 changed files with 21 additions and 0 deletions
|
@ -93,6 +93,27 @@ (define-module (gnu packages maths)
|
|||
#:use-module (gnu packages zip)
|
||||
#:use-module (srfi srfi-1))
|
||||
|
||||
(define-public aris
|
||||
(package
|
||||
(name "aris")
|
||||
(version "2.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://gnu/" name "/" name "-" version ".tar.gz"))
|
||||
(sha256 (base32
|
||||
"1hlvpzrh7hzzf533diyfiabzskddi8zx92av9hwkjw3l46z7qv01"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs `(("gtk+" ,gtk+)
|
||||
("libxml2" ,libxml2)))
|
||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||
(synopsis "Logical proof program")
|
||||
(description
|
||||
"Aris is a logical proof program, and supports propositional and predicate
|
||||
logic, Boolean algebra, and arithmetical logic in the form of abstract
|
||||
sequences (seqlog).")
|
||||
(license license:gpl3+)
|
||||
(home-page "http://www.gnu.org/software/aris/")))
|
||||
|
||||
(define-public c-graph
|
||||
(package
|
||||
(name "c-graph")
|
||||
|
|
Loading…
Reference in a new issue