diff options
author | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2024-10-18 21:23:31 -0400 |
---|---|---|
committer | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2024-10-18 21:23:31 -0400 |
commit | e1d56ae5112aaf6cfd900a0fc0cdac84457a393f (patch) | |
tree | 7cab931415e438ba100e6b8c8de74f7c5ab12902 /crn/packages/wm.scm | |
parent | ad6ad65127f96ff458b90c7808c71c7bf1b8d9de (diff) |
cobamenu def
Diffstat (limited to 'crn/packages/wm.scm')
-rw-r--r-- | crn/packages/wm.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/crn/packages/wm.scm b/crn/packages/wm.scm index 21a13fc..810daf2 100644 --- a/crn/packages/wm.scm +++ b/crn/packages/wm.scm @@ -37,3 +37,22 @@ (synopsis "A collection of user-contributed scripts for sway") (description "Sway-Contrib is a community-driven effort to share and showcase various user-created configurations, scripts, themes, and other resources that enhance and help the Sway experience.") (license licenses:expat))) + +(define-public cobamenu + (package + (name "cobamenu") + (version "2.2.0") + (source (origin + (method git-fetch) + (uri + (git-reference + (url "https://codeberg.org/languidnights/cobamenu") + (commit (string-append "v" version)))) + (sha256 + (base32 "0885j28if7bci0h9359m23jbs17z1b04sjl9lc24m3p7d31id7f8")))) + (build-system cmake-build-system) + (inputs (list boost)) + (synopsis "OpenBox/LabWC pipemenu generator") + (description "OpenBox/LabWC pipemenu generator") + (home-page "https://codeberg.org/languidnights/cobamenu") + (license gpl2))) |