[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#65131] [PATCH 27/32] gnu: Add ruby-libvirt.
From: |
Hartmut Goebel |
Subject: |
[bug#65131] [PATCH 27/32] gnu: Add ruby-libvirt. |
Date: |
Mon, 7 Aug 2023 20:26:31 +0200 |
* gnu/packages/ruby.scm (ruby-libvirt): New variable.
---
gnu/packages/ruby.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 5204f42895..c1aff21e51 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -79,6 +79,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)
@@ -9633,6 +9634,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.0")
+ (source (origin
+ (method url-fetch)
+ (uri (rubygems-uri "ruby-libvirt" version))
+ (sha256
+ (base32
+ "0rnmbfhdz270fky0cm8w1i73gkrnlf3s1hdkm5yxjkdbvapwvjsd"))))
+ (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")
--
2.30.9
- [bug#65131] [PATCH 17/32] gnu: Add ruby-grpc., (continued)
- [bug#65131] [PATCH 17/32] gnu: Add ruby-grpc., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 20/32] gnu: Add ruby-vagrant-spec-helper-basic., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 22/32] gnu: ruby-childprocess: Update to 4.1.0., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 23/32] gnu: Add vagrant., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 25/32] gnu: Add vagrant-cachier., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 26/32] gnu: Add vagrant-reload., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 28/32] gnu: Add ruby-fog-core., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 30/32] gnu: Add ruby-fog-xml., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 32/32] gnu: Add vagrant-libvirt., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 24/32] gnu: Add vagrant-vai., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 27/32] gnu: Add ruby-libvirt.,
Hartmut Goebel <=
- [bug#65131] [PATCH 29/32] gnu: Add ruby-fog-json., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 31/32] gnu: Add ruby-fog-libvirt., Hartmut Goebel, 2023/08/07