updating ansible

This commit is contained in:
Jean-François GUILLAUME 2022-09-01 11:08:00 +02:00
parent e26a88f402
commit 376363faf9
GPG key ID: 38751DAE145EFB5A
2 changed files with 53 additions and 0 deletions

View file

@ -10,10 +10,12 @@
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages tls)
#:use-module (guix build-system gnu)
#:use-module (guix build-system python)
#:use-module (guix download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (glicid packages python)
)
@ -52,3 +54,39 @@
cyrus-sasl)))
(native-inputs (modify-inputs (package-native-inputs sudo-minimal)
(append pkg-config))))))
(define-public ansible
(package
(inherit gnu:ansible)
(name "ansible")
(version "6.3.0")
(source (origin
(method url-fetch)
(uri (pypi-uri name version))
(sha256 (base32 "09im4w38bm36arjxmi0jbdrmv6cgnjq4b5ks4kawhicdbb0rzynm"))
))
)
)
(define-public ansible-core
(package
(inherit gnu:ansible-core)
(name "ansible-core")
(version "2.13.3")
(source (origin
(method url-fetch)
(uri (pypi-uri name version))
(sha256 (base32 "120rrpj8pqscdf2llipxxvpmg4fxqr3s0vx32f6hq77z60jh9igf"))
))
(arguments
`(
#:tests? #f
#:phases
(modify-phases %standard-phases
(delete 'sanity-check)
)
)
)
)
)