mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
22 lines
577 B
Scheme
22 lines
577 B
Scheme
|
(define-module (glicid packages containers)
|
||
|
#:use-module (guix download)
|
||
|
#:use-module (guix packages)
|
||
|
#:use-module ((guix licenses) #:prefix license:)
|
||
|
#:use-module ((gnu packages containers) #:prefix gnu:)
|
||
|
)
|
||
|
|
||
|
(define-public podman
|
||
|
(package
|
||
|
(inherit gnu:podman)
|
||
|
(name "podman")
|
||
|
(version "4.1.0")
|
||
|
(source (origin
|
||
|
(method url-fetch)
|
||
|
(uri (list
|
||
|
(string-append "https://github.com/containers/podman/archive/refs/tags/v" version ".tar.gz")
|
||
|
))
|
||
|
(sha256 (base32 "158fyxv2hd1nwirabrwxascl9lkdphhv0knwrk0qdm0ifcmf257q"))
|
||
|
))
|
||
|
)
|
||
|
)
|