diff options
author | John Darrington <jmd@gnu.org> | 2014-02-02 11:27:36 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-02-03 22:11:32 +0100 |
commit | 9c0864434082f1caee55c799999018618afd639d (patch) | |
tree | 0694276ea4a188b8e8d4de83a19526d7c74deb4f /gnu/packages/gtk.scm | |
parent | 682b6599d775d0d6a594d84a38170bbd80fa6306 (diff) | |
download | guix-9c0864434082f1caee55c799999018618afd639d.tar guix-9c0864434082f1caee55c799999018618afd639d.tar.gz |
gnu: gtkmm-2 New variable
* gnu/packages/gtk.scm (gtkmm-2): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/gtk.scm')
-rw-r--r-- | gnu/packages/gtk.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index fcfbcc47ce..2a01f891b2 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -590,3 +590,22 @@ are easily extensible via inheritance. You can create user interfaces either in code or with the Glade User Interface designer, using libglademm. There's extensive documentation, including API reference and a tutorial.") (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))))) |