~ruther/guix-local

8d34df72 — Arun Isaac 3 years ago
gnu: Add python-pymonad.

* gnu/packages/python-xyz.scm (python-pymonad): New variable.
685dd8fb — Hilton Chain 3 years ago
services: agetty-service-type: Add missing dash.

* gnu/services/base.scm (<agetty-configuration>): Add missing dash for
no-hostname? configuration.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
26aa149b — Michael Rohleder 3 years ago
gnu: strawberry: Update to 1.0.9.

* gnu/packages/music.scm (strawberry): Update to 1.0.9.
[inputs]: Add icu4c.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
5ecbb9c1 — kiasoc5 3 years ago
gnu: dragon-drop: Update to 1.2.0.

* gnu/packages/gtk.scm (dragon-drop): Update to 1.2.0.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
94a46dc2 — kiasoc5 3 years ago
gnu: flatpak: Update to 1.14.0.

* gnu/packages/package-management.scm (flatpak): Update to 1.14.0.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
9fb065a5 — Wiktor Żelazny 3 years ago
gnu: Add texlive-latex-totcount.

* gnu/packages/tex.scm (texlive-latex-totcount): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
742e70cb — Wiktor Żelazny 3 years ago
gnu: Add texlive-generic-soul.

* gnu/packages/tex.scm (texlive-generic-soul): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
c92b0108 — Wiktor Żelazny 3 years ago
gnu: Add texlive-latex-tabto-ltx.

* gnu/packages/tex.scm (texlive-latex-tabto-ltx): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
7627ac7b — Wiktor Żelazny 3 years ago
gnu: Add texlive-latex-lastpage.

* gnu/packages/tex.scm (texlive-latex-lastpage): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
38086675 — Zhu Zihao 3 years ago
gnu: podman: Update to 4.2.0.

* gnu/packages/containers.scm (podman): Update to 4.2.0.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
14a450ae — Zhu Zihao 3 years ago
gnu: podman: Use G-expressions.

* gnu/packages/containers.scm (podman)[arguments]: Use G-expressions.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
9f74add6 — Kristian Lein-Mathisen 3 years ago
gnu: Add solvespace.

* gnu/packages/engineering.scm (solvespace): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
7fabdffc — Kristian Lein-Mathisen 3 years ago
gnu: Add mimalloc.

* gnu/packages/c.scm (mimalloc): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
b2e560ac — Lilah Tascheter 3 years ago
gnu: man-pages: Update to new style.

* gnu/packages/man.scm (man-pages)[arguments]: Refer to package output
  using gexps instead of assoc-ref on a parameter.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
4ace4692 — Lilah Tascheter 3 years ago
gnu: Add man-pages-posix.

* gnu/packages/man.scm (man-pages-posix): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
97cccd34 — gyara 3 years ago
gnu: zsh-autopair.

* gnu/packages/shellutils.scm (zsh-autopair): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
e05f7c55 — Ludovic Courtès 3 years ago
file-systems: Open files with O_CLOEXEC.

Since this code is run from PID 1, this ensures file descriptors to
sensitive files and devices are not accidentally leaked to
sub-processes.

* gnu/build/file-systems.scm (call-with-input-file): New procedure.
(mount-file-system): Use 'close-fdes' + 'open-fdes'.
8f53630f — Ludovic Courtès 3 years ago
syscalls: Avoid repeated calls to 'syscall->procedure'.

Commit 7df4d3465d305271d4fdf4e6f886a248d63b82c4 and others changed
'mount', 'umount', & co. so they would call 'syscall->procedure' at each
call.  This change reverts to the previous behavior, where
'syscall->procedure' is called once.

* guix/build/syscalls.scm (mount, umount, reboot, load-linux-module):
Call 'syscall->procedure' only once.
392e97ed — Ludovic Courtès 3 years ago
import: gnome: Reject version strings such as "43.alpha".

Reported by Maxim Cournoyer.
This is a followup to 61b63e7fa73be8828af2b36d196c3676c974e119.

* guix/import/gnome.scm (latest-gnome-release)[even-minor-version?]:
Reject VERSION is the minor or micro part is not an integer.
69d72c55 — Ludovic Courtès 3 years ago
search-paths: Tweak $SSL_CERT_DIR comment.

* guix/search-paths.scm ($SSL_CERT_DIR): Fix typos and tweak comment.
Next