guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#56286] [PATCH v2 4/6] gnu: pkg-config: Qualify import of (guix lice


From: (
Subject: [bug#56286] [PATCH v2 4/6] gnu: pkg-config: Qualify import of (guix licenses).
Date: Tue, 28 Jun 2022 21:34:24 +0100

* gnu/packages/pkg-config.scm: Qualify (guix licenses) import with
  license: prefix.
(%pkg-config)[license]: Use qualified license:gpl2+ variable.
---
 gnu/packages/pkg-config.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/pkg-config.scm b/gnu/packages/pkg-config.scm
index 770426d779..1526d6f6e0 100644
--- a/gnu/packages/pkg-config.scm
+++ b/gnu/packages/pkg-config.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2012, 2013, 2014, 2016 Ludovic Courtès <ludo@gnu.org>
 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
 ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
+;;; Copyright © 2022 ( <paren@disroot.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -19,7 +20,7 @@
 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
 
 (define-module (gnu packages pkg-config)
-  #:use-module (guix licenses)
+  #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix gexp)
@@ -69,7 +70,7 @@ (define-public %pkg-config
            (variable "PKG_CONFIG_PATH")
            (files '("lib/pkgconfig" "lib64/pkgconfig" "share/pkgconfig")))))
    (home-page "https://www.freedesktop.org/wiki/Software/pkg-config";)
-   (license gpl2+)
+   (license license:gpl2+)
    (synopsis "Helper tool used when compiling applications and libraries")
    (description
     "pkg-config is a helper tool used when compiling applications and
-- 
2.36.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]