This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 79e5728136 gnu: pijul: Add git integration.
79e5728136 is described below

commit 79e572813618f36cc37b9aaf1e5983aa9ce0b082
Author: Efraim Flashner <[email protected]>
AuthorDate: Thu Jan 8 13:38:56 2026 +0200

    gnu: pijul: Add git integration.
    
    * gnu/packages/version-control.scm (pijul)[arguments]: Add git to the
    features.
    [inputs]: Add libgit2-1.3, libssh2.
    
    Change-Id: I1f66c818bb113187bcf4996a093fd40617a5cdc1
---
 gnu/packages/version-control.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 83a2e2881b..9ff8528267 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -6,7 +6,7 @@
 ;;; Copyright © 2015, 2016 Mathieu Lirzin <[email protected]>
 ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <[email protected]>
 ;;; Copyright © 2014, 2016, 2019, 2021 Eric Bavier <[email protected]>
-;;; Copyright © 2015-2025 Flashner <[email protected]>
+;;; Copyright © 2015-2026 Flashner <[email protected]>
 ;;; Copyright © 2015, 2018, 2020, 2021, 2022 Kyle Meyer <[email protected]>
 ;;; Copyright © 2015, 2017, 2018, 2020 Ricardo Wurmus <[email protected]>
 ;;; Copyright © 2016, 2017 Leo Famulari <[email protected]>
@@ -3794,6 +3794,7 @@ a built-in wiki, built-in file browsing, built-in tickets 
system, etc.")
     (arguments
      (list
        #:install-source? #f
+       #:features '(list "git")
        #:phases
        #~(modify-phases %standard-phases
            (add-after 'install 'install-extras
@@ -3832,7 +3833,7 @@ a built-in wiki, built-in file browsing, built-in tickets 
system, etc.")
                  (list this-package)
                  '())
              (list pkg-config)))
-    (inputs (cons* libsodium openssl (cargo-inputs 'pijul)))
+    (inputs (cons* libgit2-1.3 libssh2 libsodium openssl (cargo-inputs 
'pijul)))
     (home-page "https://nest.pijul.com/pijul/pijul";)
     (synopsis "Distributed version control system")
     (description "This package provides pijul, a sound and fast distributed

Reply via email to