diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2023-08-06 17:57:24 +0200 |
---|---|---|
committer | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2024-02-24 16:44:02 +0100 |
commit | 53761a7602cd545396fd2d6035458742668998c4 (patch) | |
tree | 5ec8f196d884020ffcda17bb999243c656569bf6 /gnu/packages | |
parent | 9a6e232de0e4af3432fc74b6cdf5b1115fabb5ba (diff) |
gnu: Add ruby-libvirt.
* gnu/packages/ruby.scm (ruby-libvirt): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ruby.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index de79813bfb..3b5554bee5 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -80,6 +80,7 @@ #:use-module (gnu packages networking) #:use-module (gnu packages node) #:use-module (gnu packages perl) + #:use-module (gnu packages pkg-config) #:use-module (gnu packages protobuf) #:use-module (gnu packages python) #:use-module (gnu packages python-xyz) @@ -9673,6 +9674,28 @@ and delete boxes, versions, and providers on HashiCorp's Vagrant Cloud.") (home-page "https://github.com/hashicorp/vagrant_cloud") (license license:asl2.0))) +(define-public ruby-libvirt + (package + (name "ruby-libvirt") + (version "0.8.2") + (source (origin + (method url-fetch) + (uri (rubygems-uri "ruby-libvirt" version)) + (sha256 + (base32 + "0v6vj5vs9v01zr00bflqpfczhwcyc6jdf8k2dqn42lq6d87si77d")))) + (build-system ruby-build-system) + (arguments + (list + #:tests? #f)) ; tests require access to libvirt socket + (native-inputs (list pkg-config)) + (inputs (list libvirt)) + (synopsis "Ruby bindings for libvirt") + (description "This package provides Ruby language binding for libvirt's +native C API.") + (home-page "https://ruby.libvirt.org/") + (license license:lgpl2.1+))) + (define-public ruby-pry-byebug (package (name "ruby-pry-byebug") |