summaryrefslogtreecommitdiff
path: root/distro/packages
Commit message (Collapse)AuthorAge
* Update license headers.Ludovic Courtès2013-01-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change all license headers, except guix/build/* and ld-wrapper.scm, with this code: (use-modules (guix build utils) (srfi srfi-1)) (fluid-set! %default-port-encoding "UTF-8") (substitute* (remove (lambda (f) (or (string-contains f ".tar.") (string-contains f ".git/") (string-contains f ".so") (string-suffix? ".o" f) (string-suffix? ".a" f) (string-suffix? ".go" f) (string-suffix? ".pdf" f) (string-suffix? ".png" f) (string-suffix? ".info" f) (equal? (basename f) "guix-daemon") (equal? (basename f) "nix-setuid-helper") (string-contains f "nix-upstream/") (string-contains f "distro/packages/bootstrap/"))) (find-files "." "\\.[a-z]+$")) (("^([[:graph:]]+) This file is part of Guix." _ comment-start) (string-append comment-start " This file is part of GNU Guix.")) (("^([[:graph:]]+) Guix --- Nix package management.*" _ comment-start) (string-append comment-start " GNU Guix --- Functional package management for GNU\n")) (("^([[:graph:]]+) Guix is " _ comment-start) (string-append comment-start " GNU Guix is ")) (("^([[:graph:]]+) along with Guix." _ comment-start) (string-append comment-start " along with GNU Guix.")) (("^([[:graph:]]+) Copyright \\(C\\)" _ comment-start) (string-append comment-start " Copyright ©"))) Change headers using C-style comments manually.
* distro: Add Berkeley DB.Andreas Enge2013-01-02
| | | | | * distro/packages/bdb.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add MIT Kerberos 5.Andreas Enge2013-01-02
| | | | | * distro/packages/mit-krb5.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add Libntlm, GNU GSS and GNU SASL.Andreas Enge2012-12-30
| | | | | * distro/packages/gsasl.scm: New file. * Makefile.am (MODULES): Add it.
* distro: automake: Update to 1.12.6.Andreas Enge2012-12-30
| | | | * distro/packages/autotools.scm (automake): Update to 1.12.6.
* distro: Add GNU Libidn.Andreas Enge2012-12-30
| | | | | * distro/packages/libidn.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Update libtasn1 and gnutls.Andreas Enge2012-12-30
| | | | * distro/packages/gnutls.scm: Update libtasn1 and gnutls.
* distro: Add GNU idutils.Ludovic Courtès2012-12-21
| | | | | * distro/packages/idutils.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add rsync.Andreas Enge2012-12-21
| | | | | * distro/packages/rsync.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add mpfrcx and fplll.Andreas Enge2012-12-20
| | | | | * distro/packages/algebra.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add Usbutils.Nikita Karetnikov2012-12-18
| | | | * distro/packages/linux.scm (usbutils): New variable.
* distro: Add Libusb.Nikita Karetnikov2012-12-18
| | | | | * distro/packages/libusb.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add Check.Nikita Karetnikov2012-12-17
| | | | | * distro/packages/check.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Use (guix licenses) instead of strings.Nikita Karetnikov2012-12-14
| | | | | | | | | | | | | | | | | | | | | | | | | | * 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).
* distro: lout: Comment out dependency on Ghostscript.Ludovic Courtès2012-12-13
| | | | | * distro/packages/lout.scm (lout): Temporarily comment out dependency on Ghostscript as this was causing evaluation errors on Hydra.
* distro: lout: Delay use of of `nixpkgs-derivation'.Ludovic Courtès2012-12-10
| | | | | * distro/packages/lout.scm (lout): Don't fork with `nixpkgs-derivation', to avoid any issues in the absence of `nix-instantiate'.
* distro: Add ACL.Nikita Karetnikov2012-12-07
| | | | | | * distro/packages/acl.scm: New file. Dependency on Perl added by Ludovic. * Makefile.am (MODULES): Add it.
* distro: Add Attr.Nikita Karetnikov2012-12-07
| | | | | | * distro/packages/attr.scm: New file. Dependency on Perl and `patch-shebang' added by Ludovic. * Makefile.am (MODULES): Add it.
* distro: Add GNU lsh.Ludovic Courtès2012-12-04
| | | | | | | | | * distro/packages/lsh.scm, distro/packages/patches/lsh-guile-compat.patch: distro/packages/patches/lsh-no-root-login.patch: distro/packages/patches/lsh-pam-service-name.patch: New files. * Makefile.am (MODULES): Add lsh.scm. (dist_patch_DATA): Add the above patches.
* distro: Add util-linux.Nikita Karetnikov2012-12-04
| | | | * distro/packages/linux.scm (util-linux): New variable.
* distro: Add psmisc.Ludovic Courtès2012-12-04
| | | | * distro/packages/linux.scm (psmisc): New variable.
* distro: make-bootstrap: Use `linux' module.Ludovic Courtès2012-12-02
| | | | | * distro/packages/make-bootstrap.scm: Use (distro packages linux). This is a followup to 80fe5c6.
* distro: gnutls: Build sequentially.Ludovic Courtès2012-12-01
| | | | * distro/packages/gnutls.scm (gnutls)[arguments]: New field.
* distro: guile-2.0: Update to 2.0.7.Ludovic Courtès2012-11-30
| | | | | * distro/packages/guile.scm (guile-2.0): Switch to 2.0.7. (guile-2.0/fixed): Stay at 2.0.6.
* distro: Add `guile-2.0/fixed', which should rarely change.Ludovic Courtès2012-11-30
| | | | | * distro/packages/guile.scm (guile-2.0/fixed): New variable. * distro/packages/base.scm (guile-final): Use it.
* distro: Import 'gettext' under a different name.Nikita Karetnikov2012-11-28
| | | | | * distro/packages/nano.scm, distro/packages/wget.scm: Import 'gettext' from (distro packages gettext) under 'guix:gettext'.
* distro: linux-libre-headers: Move to (distro packages linux).Ludovic Courtès2012-11-27
| | | | | * distro/packages/base.scm (linux-libre-headers): Move to... * distro/packages/linux.scm (linux-libre-headers): ... here.
* distro: Add Linux-PAM.Ludovic Courtès2012-11-27
| | | | | * distro/packages/linux.scm: New file. * Makefile.am (MODULES): Add it.
* distro: flex: Fix module name.Ludovic Courtès2012-11-27
| | | | | * distro/packages/flex.scm: Change the module name to (distro packages flex).
* distro: Add GNU Cpio.Nikita Karetnikov2012-11-25
| | | | | | | * distro/packages/cpio.scm, distro/packages/patches/cpio-gets-undeclared.patch: New files. * Makefile.am (MODULES): Add 'cpio.scm'. (dist_patch_DATA): Add 'cpio-gets-undeclared.patch'.
* distro: Add GNU Time.Nikita Karetnikov2012-11-25
| | | | | * distro/packages/time.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add GNU Which.Nikita Karetnikov2012-11-25
| | | | | * distro/packages/which.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add GNU Less.Nikita Karetnikov2012-11-25
| | | | | * distro/packages/less.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add GNU Nano.Nikita Karetnikov2012-11-25
| | | | | * distro/packages/nano.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add GNU Wget.Nikita Karetnikov2012-11-25
| | | | | | * distro/packages/wget.scm: New file; patch-shebang phase added by Ludovic Courtès. * Makefile.am (MODULES): Add it.
* distro: Add GNU Ddrescue.Nikita Karetnikov2012-11-24
| | | | | * distro/packages/ddrescue.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add GNU Gettext.Nikita Karetnikov2012-11-24
| | | | | | | * distro/packages/gettext.scm, distro/packages/patches/gettext-gets-undeclared.patch: New files. * Makefile.am (MODULES): Add 'gettext.scm'. (dist_patch_DATA): Add 'gettext-gets-undeclared.patch'.
* distro: Add GNU Shishi.Nikita Karetnikov2012-11-24
| | | | | | | * distro/packages/shishi.scm, distro/packages/patches/shishi-gets-undeclared.patch: New files. * Makefile.am (MODULES): Add 'shishi.scm'. (dist_patch_DATA): Add 'shishi-gets-undeclared.patch'.
* distro: Move (distro packages libtool) to (distro packages autotools).Nikita Karetnikov2012-11-22
| | | | | | | * distro/packages/autotools.scm (libtool): Add it. * distro/packages/libtool.scm: Remove it. * distro/packages/guile.scm (distro packages guile): Adjust accordingly. * Makefile.am (MODULES): Adjust accordingly.
* distro: Add GNU Autoconf and GNU Automake.Nikita Karetnikov2012-11-22
| | | | | * distro/packages/autotools.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add Flex.Ludovic Courtès2012-11-22
| | | | | | | * distro/packages/flex.scm, distro/packages/patches/flex-bison-tests.patch: New files. * Makefile.am (MODULES): Add `flex.scm'. (dist_patch_DATA): Add `flex-bison-tests.patch'.
* distro: Add GNU Bison.Ludovic Courtès2012-11-22
| | | | | * distro/packages/bison.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add GDBM.Ludovic Courtès2012-11-22
| | | | | * distro/packages/gdbm.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add GNU Ed.Nikita Karetnikov2012-11-21
| | | | | * distro/packages/ed.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add GNU Zile.Ludovic Courtès2012-11-19
| | | | | * distro/packages/zile.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add GNU help2man.Ludovic Courtès2012-11-19
| | | | | * distro/packages/help2man.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Add GNU Pies and GNU Inetutils.Ludovic Courtès2012-11-18
| | | | | * distro/packages/system.scm: New file. * Makefile.am (MODULES): Add it.
* distro: Rebuild bootstrap Binutils and GCC.Ludovic Courtès2012-11-16
| | | | | | | | | | | These new binaries are built with the `--with-lib-path' and `--with-local-prefix' flags, respectively, as introduced in commit 01d4540. * distro/packages/bootstrap.scm (%bootstrap-coreutils&co, %bootstrap-glibc): Update URL. (%bootstrap-binutils, %bootstrap-gcc): Update URL and hashes. * build-aux/download.scm (file-name->uri): Update URL.
* distro: Configure ld and GCC to not look under /usr & co.Ludovic Courtès2012-11-16
| | | | | | | | | This fixes impurities with non-chroot builds on LFS-style distros. * distro/packages/base.scm (binutils): Pass `--with-lib-path'. (gcc-4.7): Pass `--with-local-prefix'. * distro/packages/make-bootstrap.scm (%binutils-static): Pass `--with-lib-path'.
* distro: Add GNU Texinfo.Ludovic Courtès2012-11-13
| | | | | * distro/packages/texinfo.scm: New file. * Makefile.am (MODULES): Add it.