guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 2e6dc250fe028c4cb7cef73020c8328bf3a1142c
Author: Lee Thompson <[email protected]>
AuthorDate: Wed Oct 1 21:03:16 2025 +0100
gnu: Add replxx-sources
* gnu/packages/bqn.scm (%replxx-commit, replxx-sources): New variables.
Change-Id: Ifb5af80e6b1fd5237b22385e93e0e12a136b19cb
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/bqn.scm | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/gnu/packages/bqn.scm b/gnu/packages/bqn.scm
index b6654c6455..46ef49dfde 100644
--- a/gnu/packages/bqn.scm
+++ b/gnu/packages/bqn.scm
@@ -134,6 +134,20 @@ the same author.")
(sha256
(base32 "0433hp9lgv6w6mhdz0k1kx2rmxia76yy9i0z7ps4qdk7snf2yr2q")))))
+(define %replxx-commit "13f7b60f4f79c2f14f352a76d94860bad0fc7ce9")
+
+(define replxx-sources
+ (let ((commit %replxx-commit))
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/dzaima/replxx")
+ (commit commit)))
+ (file-name (git-file-name "replxx" commit))
+ (sha256
+ (base32 "0440xjvdkrbpxqjrd6nsrnaxki0mgyinsb0b1dcshjj3h3jr1yy4")))))
+
(define cbqn-bootstrap
(let* ((revision "2")
(commit "66584ce1491d300746963b8ed17170348b2a03e6"))