~ruther/guix-local

66672a45 — Ludovic Courtès 11 years ago
gnu: Synchronize synopses and descriptions with the Womb.

* gnu/packages/gimp.scm (gimp): Synchronize synopsis and description.
* gnu/packages/gl.scm (guile-opengl): Likewise.
* gnu/packages/gnome.scm (gnumeric): Likewise.
c11a6eb1 — Ludovic Courtès 11 years ago
services: Add options to 'guix-service'.

* gnu/services/base.scm (guix-service): Add #:use-substitutes? and
  #:extra-options parameters, and honor them.
* doc/guix.texi (Base Services): Adjust accordingly.
55e70e65 — Ludovic Courtès 11 years ago
system: Add 'nano' and 'lsof' to the base packages.

* gnu/system.scm (%base-packages): Add NANO and LSOF.
88a1976c — Jason Self 11 years ago
gnu: linux-libre: Update to 3.15.5.

* gnu/packages/linux.scm (linux-libre): Update to version 3.15.5.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
f123a18f — Jason Self 11 years ago
gnu: linux-libre: Disable CONFIG_DEBUG_INFO and turn off nvidiafb module.

Disabling CONFIG_DEBUG_INFO so that local builds aren't so enormous.
Also turning off nvidiafb module based on a bug report I received.
Nouveau has its own framebuffer device and it looks like they conflict
if you load both.

* gnu/packages/linux-libre-x86_64.conf: Comment out CONFIG_FB_NVIDIA,
  and remove related items.  Comment out CONFIG_DEBUG_INFO.
* gnu/packages/linux-libre-i686.conf: Likewise.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
4660b1e8 — Ludovic Courtès 11 years ago
nls: Add German translation.
bdfdf901 — Ludovic Courtès 11 years ago
nls: Update eo, pt_BR, sr, and vi package translations.
c3cf9d36 — Ludovic Courtès 11 years ago
Merge branch 'bug-17853'
314a83ef — Ludovic Courtès 11 years ago
guix system: Fix return value for 'reconfigure'.

* guix/scripts/system.scm (perform-action) <reconfigure>: Add missing
  'return' expression.
fa16f845 — Ludovic Courtès 11 years ago
linux-initrd: Allow extra modules to be passed to 'base-initrd'.

* gnu/system/linux-initrd.scm (base-initrd): Add #:extra-modules
  parameter.
3485716f — Ludovic Courtès 11 years ago
install: Make /var/db and /mnt.

* guix/build/install.scm (directives): Add /var/db and /mnt.
8e42796b — Ludovic Courtès 11 years ago
guix system: Convert to monadic style.

* guix/scripts/system.scm (references*, topologically-sorted*,
  show-what-to-build*): New procedures.
  (copy-closure): Turn into a monadic procedure.
  (install): Likewise, and adjust parameter list.
  (switch-to-system): Likewise.
  (system-derivation-for-action, grub.cfg, maybe-build, perform-action):
  New procedures.
  (guix-system): Use them.
66670cf3 — Ludovic Courtès 11 years ago
vm: Add support for i686.

Partially fixes <http://bugs.gnu.org/18002>.
Reported by David Thompson <dthompson2@worcester.edu>.

* guix/build/vm.scm (qemu-command): Add optional 'system' parameter.
  Special-case "^i[3456]86$".
* gnu/system/vm.scm (system-qemu-image/shared-store-script): Use it.
ae9cb418 — John Darrington 11 years ago
gnu: Add chess and xboard.

* gnu/packages/games.scm (xboard, chess): New variables.
927097ef — Ludovic Courtès 11 years ago
services: Add Tor service.

* gnu/services/networking.scm (tor-service): New procedure.
* doc/guix.texi (Networking Services): Document it.
* build-aux/hydra/demo-os.scm: Use it.  Add TOR and TORSOCKS to
  'packages'.
8897603a — Ludovic Courtès 11 years ago
services: networking: Set interfaces up; delete default route only when needed.

* gnu/services/networking.scm (static-networking-service): Use -i, -A,
  and --up with Inetutils' ifconfig.  Do 'route del -net default' only
  when GATEWAY is true.
89a0d00a — Ludovic Courtès 11 years ago
system: Add 'which' to the base packages.

* gnu/system.scm (%base-packages): Add WHICH.
4a3b3b07 — Ludovic Courtès 11 years ago
services: Provide a 'loopback' service by default.

* gnu/services/networking.scm (static-networking-service): Add
  #:provision parameter; use it.
* gnu/services/base.scm (%base-services): Call
  'static-networking-service' for "lo".
f111b327 — Ludovic Courtès 11 years ago
system: Remove erroneous system binding in profile maker.

Partly fixes <http://bugs.gnu.org/18002>.
Reported by David Thompson <dthompson2@worcester.edu>.

* gnu/system.scm (union): Remove #:system parameter, which was unused.
5d098459 — Ludovic Courtès 11 years ago
gexp: Resolve the default system at '>>=' time.

Partly fixes <http://bugs.gnu.org/18002>.
Reported by David Thompson <dthompson2@worcester.edu>.

* guix/gexp.scm (gexp->derivation): Change #:system to default #f.
  Use (%current-system) from within the 'mlet*'.
* tests/gexp.scm ("gexp->derivation, default system"): New test.
Next