From 2f458ad713143f31365b9c80ed1b98999db8de32 Mon Sep 17 00:00:00 2001 From: Jakub Kądziołka Date: Wed, 26 Aug 2020 23:15:59 +0200 Subject: gnu: guix: Rollback to 1.1.0-22.4b5a6f. * gnu/packages/package-management.scm (guix): Rollback to 1.1.0-22.4b5a6f. --- gnu/packages/package-management.scm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 48d02f573a..a223764720 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -115,13 +115,23 @@ arch "-linux" "/20131110/guile-2.0.9.tar.xz")))) +;; NOTE: The commit IDs used here form a linked list threaded through the git +;; history. In a phenomenon known as boot-stripping, not only the head of this +;; list is used, but also a few older versions, when a guix from this package is +;; used to build something also depending on guix. +;; +;; Therefore, if, by accident, you set this package to a non-existent commit ID, +;; it is insufficient to simply correct it with the latest commit. +;; Instead, please push one commit that rolls back Guix to before the mistake, +;; and then another that points to the first one. That way, the faulty commit +;; won't appear on the linked list. (define-public guix ;; Latest version of Guix, which may or may not correspond to a release. ;; Note: the 'update-guix-package.scm' script expects this definition to ;; start precisely like this. (let ((version "1.1.0") - (commit "29d3569c9c712d70466d9175474c8fd1a3262234") - (revision 21)) + (commit "4b5a6fbc9b754c0ca70d033dd99f17c4f028733a") + (revision 22)) (package (name "guix") -- cgit v1.2.3
path: root/config-daemon.ac
AgeCommit message (Expand)Author
2019-11-27daemon: GC remove-unused-links phase uses 'statx' when available....Ludovic Courtès
2019-11-13daemon: Don't include <linux/fs.h>....Ludovic Courtès
2019-09-08daemon: Run 'guix substitute' directly and assume a single substituter....Ludovic Courtès
2019-09-08daemon: Run 'guix offload' directly....Ludovic Courtès
2019-09-08daemon: Run 'guix perform-download' directly....Ludovic Courtès
2019-09-08daemon: Run 'guix authenticate' directly....Ludovic Courtès
2019-09-08daemon: Invoke 'guix gc --list-busy' instead of 'list-runtime-roots'....Ludovic Courtès
2019-05-01build: Change default substitute server to "ci.guix.gnu.org"....Ludovic Courtès
2018-12-04build: Default to https://ci.guix.info for substitutes....Ludovic Courtès
2018-11-14daemon: Install 'authenticate' script under LIBEXECDIR/guix....Ludovic Courtès
2018-09-06build: Remove -L flag when $LIBGCRYPT_LIBDIR is empty....Ludovic Courtès
2018-03-05build: Default to berlin.guixsd.org substitutes on aarch64....Ludovic Courtès
2018-03-05build: Always use https substitute URLs....Ludovic Courtès
2018-02-27build: Really build 'guix offload' when possible....Ludovic Courtès
2018-02-26build: Require Guile >= 2.0.13....Ludovic Courtès
2018-01-07daemon: Make libbz2 an optional dependency....Ludovic Courtès
2018-01-07daemon: Add gzip log compression....Ludovic Courtès
2017-02-06config-daemon.ac: detect host AR...Sergei Trofimovich