mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add sfsexp.
* gnu/packages/c.scm (sfsexp): New variable. Change-Id: Iabfbe10b4ad6134ae886a3d26487f881107b559c Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
3db1a8341c
commit
99181ad981
1 changed files with 22 additions and 0 deletions
|
@ -641,6 +641,28 @@ (define-public packcc
|
|||
any other grammar rules.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public sfsexp
|
||||
(package
|
||||
(name "sfsexp")
|
||||
(version "1.4.1")
|
||||
(home-page "https://github.com/mjsottile/sfsexp")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "03srnpc7p1j7ygd0wx9gybcxhqm50kjzkybh1xs75nwz97q3y2dq"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs (list autoconf automake libtool))
|
||||
(synopsis "Symbolic expression library for C and C++")
|
||||
(description
|
||||
"sfsexp is a C/C++ library to read, parse, modify, and create symbolic
|
||||
expressions.")
|
||||
(license license:lgpl2.1+)))
|
||||
|
||||
(define-public sparse
|
||||
(package
|
||||
(name "sparse")
|
||||
|
|
Loading…
Reference in a new issue