diff options
| author | Ben J Woodcroft <donttrustben@gmail.com> | 2016-08-01 11:52:52 +1000 |
|---|---|---|
| committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-08-01 21:30:49 +1000 |
| commit | 2de61e340c286b036d4cb8dea91c0f8709aac0bf (patch) | |
| tree | ca79a408497151bb1de62ff73dbf6dc729967a90 | |
| parent | 683a4a34cd4a565cbdb0b46a326e30795657814c (diff) | |
gnu: Add ruby-pkg-config.
* gnu/packages/ruby.scm (ruby-pkg-config): New variable.
| -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 028b82daaf3..bc7afa626c9 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm | |||
| @@ -4116,3 +4116,25 @@ inspired by Erlang, Clojure, Go, JavaScript, actors and classic concurrency | |||
| 4116 | patterns.") | 4116 | patterns.") |
| 4117 | (home-page "http://www.concurrent-ruby.com") | 4117 | (home-page "http://www.concurrent-ruby.com") |
| 4118 | (license license:expat))) | 4118 | (license license:expat))) |
| 4119 | |||
| 4120 | (define-public ruby-pkg-config | ||
| 4121 | (package | ||
| 4122 | (name "ruby-pkg-config") | ||
| 4123 | (version "1.1.7") | ||
| 4124 | (source | ||
| 4125 | (origin | ||
| 4126 | (method url-fetch) | ||
| 4127 | (uri (rubygems-uri "pkg-config" version)) | ||
| 4128 | (sha256 | ||
| 4129 | (base32 | ||
| 4130 | "0lljiqnm0b4z6iy87lzapwrdfa6ps63x2z5zbs038iig8dqx2g0z")))) | ||
| 4131 | (build-system ruby-build-system) | ||
| 4132 | (arguments | ||
| 4133 | ;; Tests require extra files not included in the gem. | ||
| 4134 | `(#:tests? #f)) | ||
| 4135 | (synopsis "Detect libraries for compiling Ruby native extensions") | ||
| 4136 | (description | ||
| 4137 | "@code{pkg-config} can be used in your extconf.rb to properly detect need | ||
| 4138 | libraries for compiling Ruby native extensions.") | ||
| 4139 | (home-page "https://github.com/ruby-gnome2/pkg-config") | ||
| 4140 | (license license:lgpl2.0+))) | ||
