mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-05-02 07:05:38 +02:00
updating ansible
This commit is contained in:
parent
e26a88f402
commit
376363faf9
2 changed files with 53 additions and 0 deletions
|
@ -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)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue