diff options
author | Nikita Karetnikov <nikita@karetnikov.org> | 2012-12-14 15:14:04 +0000 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2012-12-14 23:37:24 +0100 |
commit | 4a44e743a0dfaa8fcaaa804b8c93a89ff68f2a97 (patch) | |
tree | 5a0ffc910a872516bcbda316a1670b23cea6e971 /distro/packages/autotools.scm | |
parent | 0d12bea3067da11ba3e2b9edf54d83cfc6b7b478 (diff) | |
download | patches-4a44e743a0dfaa8fcaaa804b8c93a89ff68f2a97.tar patches-4a44e743a0dfaa8fcaaa804b8c93a89ff68f2a97.tar.gz |
distro: Use (guix licenses) instead of strings.
* distro/packages/acl.scm, distro/packages/attr.scm,
distro/packages/autotools.scm, distro/packages/base.scm,
distro/packages/bash.scm, distro/packages/bdw-gc.scm,
distro/packages/bison.scm, distro/packages/bootstrap.scm,
distro/packages/compression.scm, distro/packages/cpio.scm,
distro/packages/ddrescue.scm, distro/packages/ed.scm,
distro/packages/flex.scm, distro/packages/gawk.scm,
distro/packages/gdbm.scm, distro/packages/gettext.scm,
distro/packages/gnupg.scm, distro/packages/gnutls.scm,
distro/packages/gperf.scm, distro/packages/guile.scm,
distro/packages/help2man.scm, distro/packages/less.scm,
distro/packages/libffi.scm, distro/packages/libsigsegv.scm,
distro/packages/libunistring.scm, distro/packages/linux.scm,
distro/packages/lout.scm, distro/packages/lsh.scm,
distro/packages/m4.scm, distro/packages/multiprecision.scm,
distro/packages/nano.scm, distro/packages/ncurses.scm,
distro/packages/nettle.scm, distro/packages/perl.scm,
distro/packages/pkg-config.scm, distro/packages/pth.scm,
distro/packages/readline.scm, distro/packages/recutils.scm,
distro/packages/shishi.scm, distro/packages/system.scm,
distro/packages/texinfo.scm, distro/packages/time.scm,
distro/packages/wget.scm, distro/packages/which.scm,
distro/packages/zile.scm: Use (guix licenses).
Diffstat (limited to 'distro/packages/autotools.scm')
-rw-r--r-- | distro/packages/autotools.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/distro/packages/autotools.scm b/distro/packages/autotools.scm index 61e7029cde..238025b540 100644 --- a/distro/packages/autotools.scm +++ b/distro/packages/autotools.scm @@ -18,6 +18,7 @@ ;;; along with Guix. If not, see <http://www.gnu.org/licenses/>. (define-module (distro packages autotools) + #:use-module (guix licenses) #:use-module (distro) #:use-module (distro packages perl) #:use-module (distro packages m4) @@ -56,7 +57,7 @@ UNIX-like systems without manual user intervention. Autoconf creates a configuration script for a package from a template file that lists the operating system features that the package can use, in the form of M4 macro calls.") - (license "GPLv3+"))) ; some files are under GPLv2+ + (license gpl3+))) ; some files are under GPLv2+ (define-public automake (package @@ -82,7 +83,7 @@ can use, in the form of M4 macro calls.") "GNU Automake is a tool for automatically generating `Makefile.in' files compliant with the GNU Coding Standards. Automake requires the use of Autoconf.") - (license "GPLv2+"))) ; some files are under GPLv3+ + (license gpl2+))) ; some files are under GPLv3+ (define-public libtool (package @@ -111,5 +112,5 @@ complexity of using shared libraries behind a consistent, portable interface. To use libtool, add the new generic library building commands to your Makefile, Makefile.in, or Makefile.am. See the documentation for details.") - (license "GPLv3+") + (license gpl3+) (home-page "http://www.gnu.org/software/libtool/"))) |