mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add spread-sheet-widget.
* gnu/packages/gtk.scm (spread-sheet-widget): New public variable.
This commit is contained in:
parent
f3f34b132c
commit
e2f36385d3
1 changed files with 27 additions and 0 deletions
|
@ -1630,6 +1630,33 @@ (define-public graphene
|
|||
input.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public spread-sheet-widget
|
||||
(package
|
||||
(name "spread-sheet-widget")
|
||||
(version "0.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://alpha.gnu.org/gnu/ssw/"
|
||||
name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1h93yyh2by6yrmkwqg38nd5knids05k5nqzcihc1hdwgzg3c4b8y"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("glib" ,glib "bin") ; for glib-genmarshal, etc.
|
||||
("pkg-config" ,pkg-config)))
|
||||
;; In 'Requires' of spread-sheet-widget.pc.
|
||||
(propagated-inputs
|
||||
`(("glib" ,glib)
|
||||
("gtk+" ,gtk+)))
|
||||
(home-page "https://www.gnu.org/software/ssw/")
|
||||
(synopsis "Gtk+ widget for dealing with 2-D tabular data")
|
||||
(description
|
||||
"GNU Spread Sheet Widget is a library for Gtk+ which provides a widget for
|
||||
viewing and manipulating 2 dimensional tabular data in a manner similar to many
|
||||
popular spread sheet programs.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public yad
|
||||
(package
|
||||
(name "yad")
|
||||
|
|
Loading…
Reference in a new issue