aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/prolog.scm
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2024-10-07 15:32:08 -0500
committerjgart <jgart@dismail.de>2024-10-08 11:28:14 -0500
commitc2e08bb8e1c41ccba0b8e272c01d2a7a526e49b0 (patch)
tree7b53d61a90ba12d4d338e3130eb330c5d5498c7e /gnu/packages/prolog.scm
parentd44beb9b4ad836781928a0c5667e94c0d6df13f0 (diff)
downloadguix-c2e08bb8e1c41ccba0b8e272c01d2a7a526e49b0.tar.gz
guix-c2e08bb8e1c41ccba0b8e272c01d2a7a526e49b0.zip
gnu: trealla: Update to 2.56.5.
* gnu/packages/prolog.scm (trealla): Update to 2.56.5. Change-Id: Id049cc8970761fdb202f94a17661854edd2d289c
Diffstat (limited to 'gnu/packages/prolog.scm')
-rw-r--r--gnu/packages/prolog.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/prolog.scm b/gnu/packages/prolog.scm
index 7d7b786190..720c520808 100644
--- a/gnu/packages/prolog.scm
+++ b/gnu/packages/prolog.scm
@@ -182,7 +182,7 @@ it.")
(define-public trealla
(package
(name "trealla")
- (version "2.56.4")
+ (version "2.56.5")
(source
(origin
(method git-fetch)
@@ -191,7 +191,7 @@ it.")
(url "https://github.com/trealla-prolog/trealla")
(commit (string-append "v" version))))
(sha256
- (base32 "0wr33z3rcmfwq7793k3q3lh45d5p5hl8c6pnwjj0gipcxgyh8nnm"))
+ (base32 "1xsjwffqqfn2i598q4jkqas2faxc54ccixqwljv4nw0ig3wsnxbn"))
(file-name (git-file-name name version))))
(build-system gnu-build-system)
(native-inputs
4b01200af97e019'>installer: Run the installation inside a container....When the store overlay is mounted, other processes such as kmscon, udev and guix-daemon may open files from the store, preventing the underlying install support from being umounted. See: https://lists.gnu.org/archive/html/guix-devel/2018-12/msg00161.html. To avoid this situation, mount the store overlay inside a container, and run the installation from within that container. * gnu/build/shepherd.scm (fork+exec-command/container): New procedure. * gnu/services/base.scm (guix-shepherd-service): Support an optional PID argument passed to the "start" method. If that argument is passed, ensure that guix-daemon enters the given PID MNT namespace by using fork+exec-command/container procedure. * gnu/installer/final.scm (umount-cow-store): Remove it, (install-system): run the installation from within a container. * gnu/installer/newt/final.scm (run-install-shell): Remove the display hack. Mathieu Othacehe