diff options
| author | Muriithi Frederick Muriuki <fredmanglis@gmail.com> | 2016-11-17 17:33:01 +1000 |
|---|---|---|
| committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-11-19 15:16:19 +1000 |
| commit | 6689c636d039ce5bf160c1858b99f4329427fd15 (patch) | |
| tree | 9ee7a58e143aa0a012f447b39e70f1fffb153fb5 /gnu/packages/ruby.scm | |
| parent | 4af80275a87fceeb2dcc7cf5198bb7f12d911d0f (diff) | |
gnu: Add ruby-net-http-digest-auth.
* gnu/packages/ruby.scm (ruby-net-http-digest-auth): New variable.
Diffstat (limited to 'gnu/packages/ruby.scm')
| -rw-r--r-- | gnu/packages/ruby.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index e4c1ef0db19..b6cb0a243db 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm | |||
| @@ -4179,3 +4179,25 @@ patterns.") | |||
| 4179 | libraries for compiling Ruby native extensions.") | 4179 | libraries for compiling Ruby native extensions.") |
| 4180 | (home-page "https://github.com/ruby-gnome2/pkg-config") | 4180 | (home-page "https://github.com/ruby-gnome2/pkg-config") |
| 4181 | (license license:lgpl2.0+))) | 4181 | (license license:lgpl2.0+))) |
| 4182 | |||
| 4183 | (define-public ruby-net-http-digest-auth | ||
| 4184 | (package | ||
| 4185 | (name "ruby-net-http-digest-auth") | ||
| 4186 | (version "1.4") | ||
| 4187 | (source | ||
| 4188 | (origin | ||
| 4189 | (method url-fetch) | ||
| 4190 | (uri (rubygems-uri "net-http-digest_auth" version)) | ||
| 4191 | (sha256 | ||
| 4192 | (base32 | ||
| 4193 | "14801gr34g0rmqz9pv4rkfa3crfdbyfk6r48vpg5a5407v0sixqi")))) | ||
| 4194 | (build-system ruby-build-system) | ||
| 4195 | (native-inputs | ||
| 4196 | `(("ruby-hoe" ,ruby-hoe))) | ||
| 4197 | (synopsis "RFC 2617 HTTP digest authentication library") | ||
| 4198 | (description | ||
| 4199 | "This library implements HTTP's digest authentication scheme based on | ||
| 4200 | RFC 2617. This enables the use of the digest authentication scheme instead | ||
| 4201 | of the more insecure basic authentication scheme.") | ||
| 4202 | (home-page "http://github.com/drbrain/net-http-digest_auth") | ||
| 4203 | (license license:expat))) | ||
