guix_mirror_bot pushed a commit to branch misc-world-rebuild in repository guix.
commit 5460d1a5059ef188e897b72b5b3b384c973e7403 Author: Nicolas Graves <[email protected]> AuthorDate: Sun Apr 19 17:07:09 2026 +0200 gnu: fltk: Use license: prefix. * gnu/packages/fltk.scm: Use license: prefix. Change-Id: I43193d98a620ae1a0b32fe7f198441ddc5def67b Signed-off-by: Nguyễn Gia Phong <[email protected]> --- gnu/packages/fltk.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/fltk.scm b/gnu/packages/fltk.scm index 03cc77cca2..28b73e1f04 100644 --- a/gnu/packages/fltk.scm +++ b/gnu/packages/fltk.scm @@ -23,7 +23,6 @@ ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (gnu packages fltk) - #:use-module ((guix licenses) #:select (lgpl2.0 lgpl2.0+)) #:use-module (gnu packages) #:use-module (gnu packages autotools) #:use-module (gnu packages build-tools) @@ -35,6 +34,7 @@ #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages python-xyz) + #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) @@ -100,7 +100,7 @@ without the bloat. It supports 3D graphics via OpenGL and its built-in GLUT emulation. FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK also includes an excellent UI builder called FLUID that can be used to create applications in minutes.") - (license lgpl2.0))) ; plus certain additional permissions + (license license:lgpl2.0))) ; plus certain additional permissions (define-public fltk (package @@ -162,4 +162,4 @@ UI builder called FLUID that can be used to create applications in minutes.") library, adding improved graphics rendering via Cairo, a streamlined and enhanced widget set, and other features designed to improve the appearance and performance of the Non applications.") - (license lgpl2.0+))) ; plus certain additional permissions + (license license:lgpl2.0+))) ; plus certain additional permissions
