guix-glicid/glicid/packages/containers.scm

67 lines
1.7 KiB
Scheme
Raw Normal View History

2022-06-03 14:01:13 +02:00
(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:)
)
2022-09-04 20:02:32 +02:00
(define-public podman
2022-09-18 20:43:08 +02:00
(package
(inherit gnu:podman)
(name "podman")
(version "4.2.1")
(source (origin
(method url-fetch)
(uri (list
(string-append "https://github.com/containers/podman/archive/refs/tags/v" version ".tar.gz")
))
(sha256 (base32 "1wqxiln5p29qq92317m7mllalgk2dy7fqrh48pd2hmcz3blh805i"))
))
)
)
(define-public podman-4.2.0
2022-09-04 20:02:32 +02:00
(package
(inherit gnu:podman)
(name "podman")
(version "4.2.0")
(source (origin
(method url-fetch)
(uri (list
(string-append "https://github.com/containers/podman/archive/refs/tags/v" version ".tar.gz")
))
(sha256 (base32 "1x5jmmz78ggnlyidc0ivcghpkysd4zkm598jjbf9gkaw09cvry0m"))
))
)
)
2022-09-04 20:20:03 +02:00
(define-public podman-4.1.1
2022-06-18 10:15:42 +02:00
(package
(inherit gnu:podman)
(name "podman")
(version "4.1.1")
(source (origin
(method url-fetch)
(uri (list
(string-append "https://github.com/containers/podman/archive/refs/tags/v" version ".tar.gz")
))
(sha256 (base32 "198hdf8wg50zcgrl3982yj3xd227224r7mgb135r9vmgn7lk5gr7"))
))
)
)
2022-06-18 10:25:28 +02:00
(define-public podman-4.1.0
2022-06-03 14:01:13 +02:00
(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"))
))
)
)