[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#65131] [PATCH 32/32] gnu: Add vagrant-libvirt.
From: |
Hartmut Goebel |
Subject: |
[bug#65131] [PATCH 32/32] gnu: Add vagrant-libvirt. |
Date: |
Mon, 7 Aug 2023 20:26:36 +0200 |
* gnu/packages/virtualization.scm (vagrant-libvirt): New variable.
---
gnu/packages/virtualization.scm | 53 +++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index 0742db7cc2..40f19502e7 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -2375,6 +2375,59 @@ managers and Linux distros.")
(home-page "https://github.com/fgrehm/vagrant-cachier")
(license license:expat)))
+(define-public vagrant-libvirt
+ (package
+ (name "vagrant-libvirt")
+ (version "0.12.2")
+ (source (origin
+ (method url-fetch)
+ (uri (rubygems-uri "vagrant-libvirt" version))
+ (sha256
+ (base32
+ "013g6wn24k01lwwkzcb0vvxj959lws8c52bkyqi6b8shnn793j1l"))))
+ (build-system ruby-build-system)
+ (arguments
+ (list
+ #:tests? #f ; tests involve running vagrant, downloading a box and
+ ; access to libvirt socket
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'install 'install-plugin.json
+ (lambda _
+ (let* ((plugins.d (string-append
+ #$output "/share/vagrant-plugins/plugins.d"))
+ (plugin.json (string-append
+ plugins.d "/" #$name ".json")))
+ (mkdir-p plugins.d)
+ #$(with-extensions (list guile-json-4)
+ #~(begin
+ (use-modules (json))
+ (call-with-output-file plugin.json
+ (lambda (port)
+ (scm->json
+ '((#$name
+ .
+ (("ruby_version"
+ . #$(package-version (this-package-input
"ruby")))
+ ("vagrant_version"
+ . #$(package-version (this-package-input
"vagrant")))
+ ("gem_version" . "")
+ ("require" . "")
+ ("installed_gem_version" . #$version)
+ ("sources" . #()))))
+ port)))))))))))
+ (inputs (list ruby vagrant))
+ (propagated-inputs (list ruby-diffy
+ ruby-fog-core
+ ruby-fog-libvirt
+ ruby-nokogiri
+ ruby-rexml
+ ruby-xml-simple))
+ (synopsis "@code{libvirt} provider for Vagrant")
+ (description "This plugin provides a @code{libvirt} provider for Vagrant.")
+ (home-page "https://github.com/vagrant-libvirt/vagrant-libvirt")
+ (license license:expat)))
+
(define-public vagrant-reload
(package
(name "vagrant-reload")
--
2.30.9
- [bug#65131] [PATCH 21/32] gnu: Add ruby-hashicorp-checkpoint., (continued)
- [bug#65131] [PATCH 21/32] gnu: Add ruby-hashicorp-checkpoint., Hartmut Goebel, 2023/08/07
- [bug#65131] [PATCH 14/32] gnu: Add ruby-time., Hartmut Goebel, 2023/08/07
- [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 <=
- [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, 2023/08/07
- [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