GNU bug report logs -
#54541
[PATCH] gnu: Add curlie.
Previous Next
Reported by: Imran Iqbal <imran <at> imraniqbal.org>
Date: Thu, 24 Mar 2022 06:13:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#54541: [PATCH] gnu: Add curlie.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 54541 <at> debbugs.gnu.org.
--
54541: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=54541
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
Hi,
Imran Iqbal <imran <at> imraniqbal.org> skribis:
> * gnu/packages/curl.scm (curlie): New variable.
I addressed a ‘guix lint’ warning about the description and committed it.
Thanks!
Ludo’.
[Message part 3 (message/rfc822, inline)]
* gnu/packages/curl.scm (curlie): New variable.
---
gnu/packages/curl.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm
index d36519260e..ca423ad1b9 100644
--- a/gnu/packages/curl.scm
+++ b/gnu/packages/curl.scm
@@ -362,3 +362,31 @@ (define-public coeurl
(description "Coeurl is a simple library to do HTTP requests
asynchronously via cURL in C++.")
(license license:expat)))
+
+(define-public curlie
+ (package
+ (name "curlie")
+ (version "1.6.7")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rs/curlie")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1kmp8kd5sahb7x01pkk80zs7dvsnziavjlk2igis499a3ddcjqmr"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/rs/curlie"))
+ (inputs
+ (list curl go-golang-org-x-crypto go-golang-org-x-sys))
+ (home-page "https://curlie.io")
+ (synopsis "The power of curl, the ease of use of httpie")
+ (description "If you like the interface of HTTPie but miss the features of
+curl, curlie is what you are searching for. Curlie is a frontend to @code{curl}
+that adds the ease of use of @code{httpie}, without compromising on features
+and performance. All @code{curl} options are exposed with syntax sugar and
+output formatting inspired from @code{httpie}.")
+ (license license:expat)))
--
2.35.1
This bug report was last modified 3 years and 54 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.