cbaines pushed a commit to branch ruby-team
in repository guix.
commit 18e89e160eb7c3084f8c144d18dad9e62476d9fc
Author: Christopher Baines <[email protected]>
AuthorDate: Tue Jun 27 12:44:19 2023 +0100
gnu: Add ruby-http-accept-1.
* gnu/packages/ruby.scm (ruby-http-accept-1): New variable.
---
gnu/packages/ruby.scm | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index b7c18c9418..539abb9dd5 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -11233,6 +11233,20 @@ HTTP headers.")
(home-page "https://github.com/socketry/http-accept")
(license license:expat)))
+(define-public ruby-http-accept-1
+ (package
+ (inherit ruby-http-accept)
+ (version "1.7.0")
+ (source (origin
+ (method git-fetch) ;for the tests
+ (uri (git-reference
+ (url "https://github.com/ioquatix/http-accept")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name "ruby-http-accept" version))
+ (sha256
+ (base32
+ "1hnqmqpa135s3xgcvv30qzqm8zp88my1aj05m72d2q9cvc31g92z"))))))
+
(define-public ruby-http-cookie
(package
(name "ruby-http-cookie")