diff options
| -rw-r--r-- | lxpanel-gtk2.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lxpanel-gtk2.scm b/lxpanel-gtk2.scm index 2f4d70f..fbe52ac 100644 --- a/lxpanel-gtk2.scm +++ b/lxpanel-gtk2.scm @@ -15,6 +15,24 @@ #:use-module (guix gexp) ) +(define-public libwnck-2 + (package (inherit libwnck) + (name "libwnck") + (version "2.30.7") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "15713yl0f8f3p99jzqqfmbicrdswd3vwpx7r3bkf1bgh6d9lvs4b")))) + (build-system gnu-build-system) + (native-inputs + (list pkg-config intltool)) + (propagated-inputs + (list gtk+-2 libxres startup-notification)))) + (define-public keybinder-legacy (package (name "keybinder-legacy") |
