diff options
Diffstat (limited to 'distro/packages/gperf.scm')
-rw-r--r-- | distro/packages/gperf.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/distro/packages/gperf.scm b/distro/packages/gperf.scm index cd9b05fa58..509407398d 100644 --- a/distro/packages/gperf.scm +++ b/distro/packages/gperf.scm @@ -17,6 +17,7 @@ ;;; along with Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (distro packages gperf) + #:use-module (guix licenses) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix utils) @@ -51,4 +52,4 @@ GNU gperf is highly customizable. There are options for generating C or C++ code, for emitting switch statements or nested ifs instead of a hash table, and for tuning the algorithm employed by gperf.") - (license "GPLv3+"))) + (license gpl3+))) |