diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-08-26 18:35:14 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-08-26 18:35:14 +0200 |
commit | 17dddeeee560527a8f30d37761949d658056cb09 (patch) | |
tree | 15b0b19c55787f556eb9b42c28d173bddc5435db /gnu/packages/glib.scm | |
parent | 331a09654eb7e9f6212b7e8469077fa7393e8b11 (diff) | |
parent | 6a9581741e4ee81226aeb2f1c997df76670a6aab (diff) |
Merge remote-tracking branch 'origin/master' into core-updates
Diffstat (limited to 'gnu/packages/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index 9f0721b8c2..ca037d3b24 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -619,6 +619,21 @@ It also contains adaptor classes for connection of dissimilar callbacks and has an ease of use unmatched by other C++ callback libraries.") (license license:lgpl2.1+))) +(define-public libsigc++-2 + (package + (inherit libsigc++) + (name "libsigc++") + (version "2.10.3") + (source + (origin + (method url-fetch) + (uri + (string-append "mirror://gnome/sources/libsigc++/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 "11j7j1jv4z58d9s7jvl42fnqa1dzl4idgil9r45cjv1w673dys0b")))))) + (define glibmm (package (name "glibmm") @@ -662,6 +677,24 @@ has an ease of use unmatched by other C++ callback libraries.") useful for C++.") (license license:lgpl2.1+))) + (define-public glibmm-2.64 + (package + (inherit glibmm) + (name "glibmm") + (version "2.64.2") + (source + (origin + (method url-fetch) + (uri + (string-append "mirror://gnome/sources/glibmm/" + (version-major+minor version) + "/glibmm-" version ".tar.xz")) + (sha256 + (base32 "1v6lp23fr2qh4zshcnm28sn29j3nzgsvcqj2nhmrnvamipjq4lm7")))) + (propagated-inputs + `(("libsigc++" ,libsigc++-2) + ("glib" ,glib))))) + (define-public python2-pygobject-2 (package (name "python2-pygobject") |