gnu: Add glabels.
* gnu/packages/gnome.scm (glabels): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
cd5d5f5322
commit
21051eb79e
1 changed files with 32 additions and 0 deletions
|
@ -51,6 +51,7 @@
|
||||||
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2020 Naga Malleswari <nagamalli@riseup.net>
|
;;; Copyright © 2020 Naga Malleswari <nagamalli@riseup.net>
|
||||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
||||||
|
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -10013,6 +10014,37 @@ to.")
|
||||||
;; snowball
|
;; snowball
|
||||||
license:bsd-2))))
|
license:bsd-2))))
|
||||||
|
|
||||||
|
(define-public glabels
|
||||||
|
(package
|
||||||
|
(name "glabels")
|
||||||
|
(version "3.4.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://gnome/sources/" name "/"
|
||||||
|
(version-major+minor version) "/"
|
||||||
|
"glabels-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0f2rki8i27pkd9r0gz03cdl1g4vnmvp0j49nhxqn275vi8lmgr0q"))))
|
||||||
|
(build-system glib-or-gtk-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("gettext" ,gettext-minimal)
|
||||||
|
("glib:bin" ,glib "bin")
|
||||||
|
("intltool" ,intltool)
|
||||||
|
("itstool" ,itstool)
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("gtk+" ,gtk+)
|
||||||
|
("librsvg" ,librsvg)
|
||||||
|
("libxml2" ,libxml2)))
|
||||||
|
(home-page "https://glabels.org/")
|
||||||
|
(synopsis "Program for creating labels and business cards")
|
||||||
|
(description
|
||||||
|
"gLabels is a program for creating labels and business cards. It is
|
||||||
|
designed to work with various laser/ink-jet peel-off label and business
|
||||||
|
card sheets that you’ll find at most office supply stores.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public libratbag
|
(define-public libratbag
|
||||||
(package
|
(package
|
||||||
(name "libratbag")
|
(name "libratbag")
|
||||||
|
|
Reference in a new issue