aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Moore <lockbox@struct.foo>2025-02-05 19:31:53 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-05-20 00:19:04 +0200
commit147760f81d614459239ffaa18bb6b0dfcb5c9f70 (patch)
treec6911626b2c28d3497aec5f019c5e3524fb27ee0
parentb940bbcdae3db1522e24a6e907785a1e264d096e (diff)
downloadguix-147760f81d614459239ffaa18bb6b0dfcb5c9f70.tar.gz
guix-147760f81d614459239ffaa18bb6b0dfcb5c9f70.zip
gnu: Add rust-nextest-workspace-hack-0.1.
* gnu/packages/crates-check.scm (rust-nextest-workspace-hack-0.1): New variable. Change-Id: I5c27b050b5e7c2aad22c2b7ad3d9f3b8eee4bde6 Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
-rw-r--r--gnu/packages/crates-check.scm18
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/crates-check.scm b/gnu/packages/crates-check.scm
index 3d02f5421b..8e655e46b5 100644
--- a/gnu/packages/crates-check.scm
+++ b/gnu/packages/crates-check.scm
@@ -534,6 +534,24 @@ criterion.")
select the mock struct at compile time. Used with the Mockall crate.")
(license (list license:expat license:asl2.0))))
+(define-public rust-nextest-workspace-hack-0.1
+ (package
+ (name "rust-nextest-workspace-hack")
+ (version "0.1.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "nextest-workspace-hack" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1cxjiwja0idhd8as3drl2wgk5y7f84k2rrk67pbxk7kkk1m881nr"))))
+ (build-system cargo-build-system)
+ (home-page "https://github.com/nextest-rs/nextest")
+ (synopsis "workspace-hack package")
+ (description
+ "This package provides a workspace-hack package, managed by hakari.")
+ (license license:cc0)))
+
(define-public rust-quickcheck-1
(package
(name "rust-quickcheck")