gnu: Use 'license:' prefix in (gnu packages gawk).

* gnu/packages/gawk.scm: Import (guix licenses) with 'license:' prefix.
(gawk, mawk)[license]: Prefix with 'license:'.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Paul A. Patience 2022-07-04 04:59:27 +00:00 committed by Ludovic Courtès
parent b4e74f875f
commit f5efde47f7
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -20,7 +20,7 @@
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
(define-module (gnu packages gawk) (define-module (gnu packages gawk)
#:use-module (guix licenses) #:use-module ((guix licenses) #:prefix license:)
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages bash) #:use-module (gnu packages bash)
#:use-module (gnu packages libsigsegv) #:use-module (gnu packages libsigsegv)
@ -93,7 +93,7 @@
language for the easy manipulation of formatted text, such as tables of data. language for the easy manipulation of formatted text, such as tables of data.
Gawk features many extensions beyond the traditional implementation, Gawk features many extensions beyond the traditional implementation,
including network access, sorting, and large libraries.") including network access, sorting, and large libraries.")
(license gpl3+))) (license license:gpl3+)))
(define-public mawk (define-public mawk
(package (package
@ -120,4 +120,4 @@ including network access, sorting, and large libraries.")
"@command{mawk} is an interpreter for the Awk programming language. "@command{mawk} is an interpreter for the Awk programming language.
This version aims to be smaller and faster than GNU Awk, at the expense This version aims to be smaller and faster than GNU Awk, at the expense
of fewer features and extensions.") of fewer features and extensions.")
(license gpl2))) ;version 2 only (license license:gpl2))) ;version 2 only