summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Update 'AUTHORS'.Ludovic Courtès2013-10-06
| | | | * AUTHORS: Add Alex, Joshua, and Aljosha.
* Augment 'TODO'.Ludovic Courtès2013-10-06
|
* gnu: Add alsa-utils.Ludovic Courtès2013-10-06
| | | | * gnu/packages/linux.scm (alsa-utils): New variable.
* gnu: xmlto: Keep references to libxml2, libxslt, and util-linux programs.Ludovic Courtès2013-10-06
| | | | | * gnu/packages/xml.scm (xmlto): Add 'arguments' field. [inputs]: Add libxml2 and libxslt.
* gnu: Gracefully handle circular dependencies between 'base' and 'linux'.Ludovic Courtès2013-10-06
| | | | | * gnu/packages/base.scm (linux-libre-headers-boot0): Turn into a thunk. User updated.
* gnu: pari-gp: Update to 2.5.5.Andreas Enge2013-10-06
| | | | * gnu/packages/algebra.scm (pari-gp): Update to 2.5.5.
* gnu: mutt: Add input gpgme.Andreas Enge2013-10-06
| | | | * gnu/packages/mail.scm (mutt): Add input gpgme.
* gnu: Add gpgme.Andreas Enge2013-10-06
| | | | * gnu/packages/gnupg.scm (gpgme): New variable.
* gnu: icu4c: Patch RUNPATH of libraries.Andreas Enge2013-10-06
| | | | | * gnu/packages/icu4c.scm (icu4c): Elf-patch RUNPATH of libraries, for instance of libicuuc.so.
* gnu: cdparanoia: Fix links of internal libraries into binary.Andreas Enge2013-10-06
| | | | | * gnu/packages/cdrom.scm (cdparanoia): Use patchelf to link internal libraries into binary.
* gnu: Add libsigc++ and glibmm.Ludovic Courtès2013-10-06
| | | | * gnu/packages/glib.scm (libsigc++, glibmm): New variable.
* gnu: gobject-introspection: Export via #:export.Ludovic Courtès2013-10-05
| | | | | * gnu/packages/glib.scm: Export 'gobject-instrospection' via the #:export clause.
* gnu: Add freeglut, glu, and FTGL.Joshua S. Grant2013-10-05
| | | | | | | * gnu/packages/gl.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
* gnu: ao: Build PulseAudio back-end.Ludovic Courtès2013-10-05
| | | | * gnu/packages/oggvorbis.scm (ao): Add PulseAudio as an input.
* gnu: oggvorbis: Use #:export clause.Ludovic Courtès2013-10-05
| | | | | * gnu/packages/oggvorbis.scm: Use #:export clause instead of 'define-public'.
* gnu: pulseaudio: Add dependency on libcap.Ludovic Courtès2013-10-05
| | | | * gnu/packages/pulseaudio.scm (pulseaudio): Add dependency on libcap.
* gnu: Add libcap.Ludovic Courtès2013-10-05
| | | | * gnu/packages/linux.scm (libcap): New variable.
* download: Add Debian mirrors.Ludovic Courtès2013-10-05
| | | | * guix/download.scm (%mirrors)[debian]: New set of mirrors.
* gnu: gnupg: Upgrade to 2.0.22.Ludovic Courtès2013-10-05
| | | | | * gnu/packages/gnupg.scm (gnupg): Update to 2.0.22. This release fixes security issue CVE-2013-4402 in the OpenPGP packet parser.
* gnu: Add PulseAudio and related libraries.Ludovic Courtès2013-10-04
| | | | | * gnu/packages/pulseaudio.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu: Add FFTW.Ludovic Courtès2013-10-04
| | | | * gnu/packages/algebra.scm (fftw): New variable.
* gnu: Add libxkbcommon.Andreas Enge2013-10-04
| | | | | * gnu/packages/qt.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu: xorg: Add xcb-util-renderutil.Andreas Enge2013-10-04
| | | | * gnu/packages/xorg.scm (xcb-util-renderutil): New variable.
* gnu: xorg: Add xcb-util-keysyms.Andreas Enge2013-10-04
| | | | * gnu/packages/xorg.scm (xcb-util-keysyms): New variable.
* gnu: xorg: Add xcb-util-image.Andreas Enge2013-10-04
| | | | * gnu/packages/xorg.scm (xcb-util-image): New variable.
* gnu: xorg: Add xcb-util.Andreas Enge2013-10-04
| | | | | * gnu/packages/xorg.scm (xcb-util): New variable. * gnu/packages/xorg.scm (xcb-util-wm): Expand the description.
* gnu: xorg: Add xcb-util-wm.Andreas Enge2013-10-03
| | | | * gnu/packages/xorg.scm (xcb-util-wm): New variable.
* gnu: Add Netcat.Ludovic Courtès2013-10-03
| | | | * gnu/packages/system.scm (netcat): New variable.
* monads: Allow resolution of a monad's bind/return at expansion time.Ludovic Courtès2013-10-03
| | | | | | | | | * guix/monads.scm (<monad>): Turn in a raw SRFI-9 record type. (define-monad): New macro. (with-monad): Add a case for when MONAD is a macro. (identity-return, identity-bind, store-return, store-bind): Inline. (%identity-monad, %store-monad): Use 'define-monad'. * tests/monads.scm ("monad?"): New test.
* gnu: vm: Rewrite helper functions as monadic functions.Ludovic Courtès2013-10-03
| | | | | | | | | | | | | | | * gnu/system/dmd.scm (host-name-service, nscd-service, mingetty-service, syslog-service, guix-service, static-networking-service): Rewrite as monadic functions. (dmd-configuration-file): Use 'text-file' instead of 'add-text-to-store'. * gnu/system/grub.scm (grub-configuration-file): Rewrite as a monadic function. * gnu/system/linux.scm (pam-services->directory): Likewise. * gnu/system/shadow.scm (group-file, passwd-file, guix-build-accounts): Likewise. * gnu/system/vm.scm (expression->derivation-in-linux-vm, qemu-image, union, system-qemu-image): Likewise.
* Add (guix monads).Ludovic Courtès2013-10-03
| | | | | | | | | * guix/monads.scm: New file. * tests/monads.scm: New file. * Makefile.am (MODULES): Add guix/monads.scm. (SCM_TESTS): Add tests/monads.scm. * doc/guix.texi (The Store Monad): New node. (The Store): Reference it.
* gnu: libxcb: Enable xcb-xkb.Andreas Enge2013-10-03
| | | | * gnu/packages/xorg.scm (libxcb): Add configure flag "--enable-xkb".
* gnu: gnome: Add brasero.Andreas Enge2013-10-03
| | | | | * gnu/packages/gnome.scm (brasero): New variable; not totally usable due to lacking inputs.
* gnu: Add hicolor-icon-theme.Andreas Enge2013-10-02
| | | | * gnu/packages/gnome.scm (hicolor-icon-theme): New variable.
* gnu: gnome: Add gnome-icon-theme.Andreas Enge2013-10-02
| | | | * gnu/packages/gnome.scm (gnome-icon-theme): New variable.
* gnu: Add icon-naming-utils.Andreas Enge2013-10-02
| | | | * gnu/packages/gnome.scm (icon-naming-utils): New variable.
* gnu: Add perl-xml-simple.Andreas Enge2013-10-02
| | | | * gnu/packages/xml.scm (perl-xml-simple): New variable.
* gnu: gnome: Add gsettings-desktop-schemas.Andreas Enge2013-10-02
| | | | * gnu/packages/gnome.scm (gsettings-desktop-schemas): New variable.
* gnu: xnee: Drop input gtk+.Andreas Enge2013-10-02
| | | | * gnu/packages/xnee.scm (xnee): Drop unused input gtk+.
* gnu: itstool: Really push the modification announced in 9000d556.Andreas Enge2013-10-02
| | | | * gnu/packages/glib.scm (itstool): Do as announced in 9000d556.
* gnu: itstool: Add propagated inputs python-2 and libxml2.Andreas Enge2013-10-02
| | | | | | | * gnu/packages/glib.scm (itstool): Add propagated input python-2; it is needed to rewrite the shebang in the output python script and must be propagated so that PYTHONPATH gets set when using itstool; and libxml2, imported as a module by the script.
* gnu: Add libcanberra.Andreas Enge2013-10-02
| | | | | * gnu/packages/libcanberra.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* gnu: libvorbis: Propagate input libogg.Andreas Enge2013-10-02
| | | | | * gnu/packages/oggvorbis.scm (libvorbis): Propagate input libogg, as stipulated by the pkg-config files.
* gnu: gnome: Add libnotify.Andreas Enge2013-10-02
| | | | * gnu/packages/gnome.scm (libnotify): New variable.
* gnu: racket: Revert input from gtk+-3 to gtk+-2.Andreas Enge2013-10-02
| | | | * gnu/packages/scheme.scm (racket): Revert input from gtk+-3 to gtk+-2.
* gnu: gtk+: Propagate inputs.Andreas Enge2013-10-01
| | | | | * gnu/packages/gtk.scm (gtk+): Propagate inputs at-spi2-atk, libxi and libxinerama.
* gnu: Revert inputs from gtk+-3 to gtk+-2.Andreas Enge2013-10-01
| | | | | | | | | * gnu/packages/cdrom.scm (dvdisaster): Replace input gtk+ by gtk+-2. * gnu/packages/emacs.scm (emacs): Replace input gtk+ by gtk+-2. * gnu/packages/geeqie.scm (geeqie): Replace input gtk+ by gtk+-2. * gnu/packages/gkrellm.scm (gkrellm): Replace input gtk+ by gtk+-2. * gnu/packages/mp3.scm (ripperx): Replace input gtk+ by gtk+-2. * gnu/packages/scheme.scm: Drop duplicate inclusion of module gtk.
* gnu: gtk+-2: Update to 2.24.21.Andreas Enge2013-10-01
| | | | | * gnu/packages/gtk.scm (gtk+-2): Update to 2.24.21, add inputs perl and python.
* gnu: Add Gtk+ 3.Andreas Enge2013-10-01
| | | | | * gnu/packages/gtk.scm (gtk+): Switch to version 3.10.0. * gnu/packages/gtk.scm (gtk+-2): New name for version 2.24.20.
* gnu: Drop gtk+-3, erroneously pushed in the previous commit.Andreas Enge2013-10-01
| | | | * gnu/packages/gtk.scm (gtk+-3): Delete variable.