aboutsummaryrefslogtreecommitdiff
path: root/nix/libstore
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2023-11-05 10:56:03 +0200
committerEfraim Flashner <efraim@flashner.co.il>2023-11-28 07:59:27 +0200
commit6b61670f09d16b98a20057f0d0ba4e804b61b05f (patch)
tree2a518026a92b07efa944678dc3891205ca65cb31 /nix/libstore
parentf16f82e66d27b3d1d7660cbe8e6842b31ac62953 (diff)
downloadguix-6b61670f09d16b98a20057f0d0ba4e804b61b05f.tar.gz
guix-6b61670f09d16b98a20057f0d0ba4e804b61b05f.zip
gnu: Add libgit2-1.7.
* gnu/packages/version-control.scm (libgit2-1.7): New variable. Change-Id: I872208575dace0868dc7a2acd35c08f43871030e
Diffstat (limited to 'nix/libstore')
0 files changed, 0 insertions, 0 deletions
572ae30f95a93bcd56621234'>channels: Record 'guix' channel metadata in (guix config)....Partially fixes <https://bugs.gnu.org/45896>. * guix/config.scm.in (%channel-metadata): New variable. * guix/describe.scm (channel-metadata): Use it. (current-channels): New procedure. (current-profile-entries): Clarify docstring. * guix/self.scm (compiled-guix): Add #:channel-metadata and pass it to 'make-config.scm'. (make-config.scm): Add #:channel-metadata and define '%channel-metadata' in the generated file. (guix-derivation): Add #:channel-metadata and pass it to 'compiled-guix'. * guix/channels.scm (build-from-source): Replace 'name', 'source', and 'commit' parameters with 'instance'. Pass #:channel-metadata to BUILD. (build-channel-instance): Adjust accordingly. * build-aux/build-self.scm (build-program): Add #:channel-metadata and pass it to 'guix-derivation'. (build): Add #:channel-metadata and pass it to 'build-program'. * guix/scripts/describe.scm (display-profile-info): Add optional 'channels' parameter. Pass it to 'display-profile-content'. (display-profile-content): Add optional 'channels' parameter and honor it. Iterate on CHANNELS rather than on the manifest entries of PROFILE. (guix-describe): When PROFILE is #f, call 'current-channels' and pass it to 'display-profile-info', unless it returns the empty list. Ludovic Courtès 2021-02-01guix package: Add '--export-channels'....* guix/channels.scm (sexp->channel): Export. * guix/describe.scm: Use (guix channels). (manifest-entry-provenance): New procedure. * guix/scripts/package.scm (channel=?, export-channels): New procedures. (show-help, %options): Add '--export-channels'. (process-query): Honor it. * build-aux/build-self.scm (build-program)[select?]: Exclude (guix channels) to account for the (guix describe) change above. * doc/guix.texi (Invoking guix package): Document it. Ludovic Courtès