mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
Merge branch 'devel' into 'main'
updating ansible See merge request glicid-public/guix-glicid!77
This commit is contained in:
commit
651211f091
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)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
|
|
|
@ -18,3 +18,18 @@
|
|||
)
|
||||
)
|
||||
)
|
||||
|
||||
;(define-public python-3.10
|
||||
; (package
|
||||
; (inherit python-3.9)
|
||||
; (name "python")
|
||||
; (version "3.10.6")
|
||||
; (source
|
||||
; (origin
|
||||
; (method url-fetch)
|
||||
; (uri (string-append "https://www.python.org/ftp/python/" version "/Python-" version ".tar.xz"))
|
||||
; (sha256 (base32 "1wyknqk46ay2k05118isb2jdhj46qaq5325w6dy0qjqxs63zz5gp"))
|
||||
; )
|
||||
; )
|
||||
; )
|
||||
;)
|
||||
|
|
Loading…
Add table
Reference in a new issue