diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-02-01 12:57:06 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-02-01 13:16:45 +0100 |
commit | 38bbd61df1e647b475815f1f35f79e97799f2824 (patch) | |
tree | 84bb0e758cd05b3189d2d2d8ea96447318cd9fbc /gnu/packages/compression.scm | |
parent | cb09fb24eef9480188ef6b7c9411cd37bfc3b494 (diff) | |
download | patches-38bbd61df1e647b475815f1f35f79e97799f2824.tar patches-38bbd61df1e647b475815f1f35f79e97799f2824.tar.gz |
gnu: Fix invalid `license' fields.
* gnu/packages/acl.scm (acl): Change `license' field to refer to the
`license' objects.
* gnu/packages/attr.scm (attr): Likewise.
* gnu/packages/compression.scm (xz): Likewise.
* gnu/packages/global.scm (global): Likewise.
* gnu/packages/linux.scm (linux-libre-headers): Likewise.
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index dc00f323ce..086900990b 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2012 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -171,7 +171,7 @@ been modified quite a lot to be suitable for XZ Utils. The primary compression algorithm is currently LZMA2, which is used inside the .xz container format. With typical files, XZ Utils create 30 % smaller output than gzip and 15 % smaller output than bzip2.") - (license '(license:gpl2+ license:lgpl2.1+)) ; bits of both + (license (list license:gpl2+ license:lgpl2.1+)) ; bits of both (home-page "http://tukaani.org/xz/"))) (define-public lzo |