diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-01-12 16:51:45 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-01-12 16:51:45 +0100 |
commit | fe8ccfcc7212a5610e547dbf29f3a04cde3e816a (patch) | |
tree | 9fbc0ea6a10a1ed8c0932ca4dbf0a160c1599a70 /distro | |
parent | e47e3effafa0d2ae7526ad99b81b0926b1f07a34 (diff) | |
download | guix-fe8ccfcc7212a5610e547dbf29f3a04cde3e816a.tar guix-fe8ccfcc7212a5610e547dbf29f3a04cde3e816a.tar.gz |
distro: util-linux: Fix `license' field.
* distro/packages/linux.scm (util-linux): Change `license' field to
refer to the actual license objects.
Diffstat (limited to 'distro')
-rw-r--r-- | distro/packages/linux.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/distro/packages/linux.scm b/distro/packages/linux.scm index 7e18e393b9..534aac11ab 100644 --- a/distro/packages/linux.scm +++ b/distro/packages/linux.scm @@ -173,11 +173,12 @@ providing the system administrator with some help in common tasks.") "util-linux is a random collection of utilities for the Linux kernel") (description "util-linux is a random collection of utilities for the Linux kernel.") + ;; Note that util-linux doesn't use the same license for all the - ;; code. GPLv2+ is the default license for a code without an + ;; code. GPLv2+ is the default license for a code without an ;; explicitly defined license. - (license '(gpl3+ gpl2+ gpl2 lgpl2.0+ - bsd-4 public-domain)))) + (license (list gpl3+ gpl2+ gpl2 lgpl2.0+ + bsd-4 public-domain)))) (define-public procps (package |