diff options
| author | techchud <protrude_paying969@simplelogin.com> | 2026-06-20 13:55:21 -0500 |
|---|---|---|
| committer | techchud <protrude_paying969@simplelogin.com> | 2026-06-20 13:55:21 -0500 |
| commit | 2a0054bdcbcec2336d15eb5212864f2f9a612cec (patch) | |
| tree | 1228a191b49a3bfbfd67bbd84b0f78f3948ad788 /lxpanel-gtk2.scm | |
| parent | 9bcbde93d922397b3512747b6cc9e2d57d2208b4 (diff) | |
| download | guix-techchud-2a0054bdcbcec2336d15eb5212864f2f9a612cec.tar.gz guix-techchud-2a0054bdcbcec2336d15eb5212864f2f9a612cec.tar.bz2 guix-techchud-2a0054bdcbcec2336d15eb5212864f2f9a612cec.zip | |
readd libwnck-2
Diffstat (limited to 'lxpanel-gtk2.scm')
| -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") |
