diff options
author | Mike Delago <michaeldelago98@gmail.com> | 2024-04-15 20:45:56 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2024-04-23 14:31:58 +0100 |
commit | fca358e78f0602de25c399a9d5ab772270e091d7 (patch) | |
tree | bf32f9e9b1ae844c82e2779fc009026062daf8a0 /gnu | |
parent | 8dbe101b3049e6159afaab1df38354b7bd657733 (diff) | |
download | guix-fca358e78f0602de25c399a9d5ab772270e091d7.tar.gz guix-fca358e78f0602de25c399a9d5ab772270e091d7.zip |
gnu: Correct license for five suckless packages.
* gnu/packages/suckless.scm (st, xst, surf, wmname): Change license to x11 and
expat.
* gnu/packages/suckless.scm (sente): Change license to isc.
Change-Id: Iaaeae3761ad57175c5de8a36f5c8bb163c02f702
Co-authored-by: Christina O'Donnell <cdo@mutix.org>
Signed-off-by: Christopher Baines <mail@cbaines.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/suckless.scm | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index 39cf2e4cc5..346784fd73 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -403,7 +403,8 @@ numbers of user-defined menu items efficiently.") implements 256 colors, most VT10X escape sequences, utf8, X11 copy/paste, antialiased fonts (using fontconfig), fallback fonts, resizing, and line drawing.") - (license license:x11))) + (license (list license:x11 + license:expat)))) (define-public xst (package @@ -434,7 +435,8 @@ drawing.") @item @uref{https://st.suckless.org/patches/spoiler/, spoiler} @item @uref{https://st.suckless.org/patches/vertcenter/, vertcenter} @end itemize") - (license license:expat))) + (license (list license:x11 + license:expat)))) (define-public lukesmithxyz-st (let ((commit "e053bd6036331cc7d14f155614aebc20f5371d3a") @@ -532,7 +534,8 @@ Vim bindings and Xresource compatibility.") display websites and follow links. It supports the XEmbed protocol which makes it possible to embed it in another application. Furthermore, one can point surf to another URI by setting its XProperties.") - (license license:x11))) + (license (list license:expat + license:x11)))) (define-public sent (package @@ -581,7 +584,7 @@ Especially for presentations using the Takahashi method this is very nice and allows you to write down the presentation for a quick lightning talk within a few minutes.") (home-page "https://tools.suckless.org/sent/") - (license license:x11))) + (license license:isc))) (define-public wmname (package @@ -611,7 +614,8 @@ few minutes.") property of the root window similar to how @command{hostname} behaves. It is useful for fixing problems with JDK versions and other broken programs assuming a reparenting window manager for instance.") - (license license:expat))) + (license (list license:x11 + license:expat)))) (define-public xbattmon (package |