summaryrefslogtreecommitdiff
path: root/gnu/packages/rust-apps.scm
diff options
context:
space:
mode:
authorJohn Kehayias <john@guixotic.coop>2026-01-13 15:30:01 -0500
committerMaxim Cournoyer <maxim@guixotic.coop>2026-02-16 14:39:10 +0900
commit51b3297e0b52407f2dc67d7cdb893cc1d587d7e3 (patch)
tree2ecde60f65e81ff7519f898063874822ce2fcbad /gnu/packages/rust-apps.scm
parent33f5bfc11b3e2f482b853e99da7fc2699980a66f (diff)
gnu: Add bwt.
* gnu/packages/rust-apps.scm (bwt): New variable. * gnu/packages/rust-crates.scm (lookup-cargo-inputs): Add bwt. Change-Id: I92b1d7fea7cf3f6f216c5cfe959a4b41d65f169c Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
Diffstat (limited to 'gnu/packages/rust-apps.scm')
-rw-r--r--gnu/packages/rust-apps.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index e834f6d21b1..b4604a619ad 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -379,6 +379,28 @@ paging.")
the terminal.")
(license license:expat)))
+(define-public bwt
+ (package
+ (name "bwt")
+ (version "0.2.4")
+ (source
+ (origin
+ (method git-fetch)
+ ;; Use git as the crate-uri is missing the readme file.
+ (uri (git-reference
+ (url "https://github.com/bwt-dev/bwt")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1rrxwibl8n1br2xq3g7c7nvi5zv8pkz3wdp9dxyvxwkf43bnldsd"))))
+ (build-system cargo-build-system)
+ (inputs (cargo-inputs 'bwt))
+ (home-page "https://github.com/bwt-dev/bwt")
+ (synopsis "Lightweight wallet tracker and query engine for Bitcoin")
+ (description
+ "This package provides a lightweight wallet tracker and query engine for Bitcoin.")
+ (license license:expat)))
+
;; Note: It has expat license.
;; Note: That is supposedly the (unreleased) version 0.6.3.
(define %tinycbor-source