mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: gtkmm-2 New variable
* gnu/packages/gtk.scm (gtkmm-2): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
682b6599d7
commit
9c08644340
1 changed files with 19 additions and 0 deletions
|
@ -590,3 +590,22 @@ (define-public gtkmm
|
||||||
in code or with the Glade User Interface designer, using libglademm. There's
|
in code or with the Glade User Interface designer, using libglademm. There's
|
||||||
extensive documentation, including API reference and a tutorial.")
|
extensive documentation, including API reference and a tutorial.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
|
|
||||||
|
(define-public gtkmm-2
|
||||||
|
(package (inherit gtkmm)
|
||||||
|
(version "2.24.2")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "mirror://gnome/sources/gtkmm/"
|
||||||
|
(string-take version 4) "/gtkmm-"
|
||||||
|
version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0gcm91sc1a05c56kzh74l370ggj0zz8nmmjvjaaxgmhdq8lpl369"))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("pangomm" ,pangomm)
|
||||||
|
("cairomm" ,cairomm)
|
||||||
|
("atkmm" ,atkmm)
|
||||||
|
("gtk+" ,gtk+-2)
|
||||||
|
("glibmm" ,glibmm)))))
|
||||||
|
|
Loading…
Reference in a new issue