Merge branch 'devel' of gitlab.univ-nantes.fr:glicid-public/guix-glicid into devel

This commit is contained in:
Yann Dupont 2022-11-08 14:38:04 +01:00
commit 2dfeee50ba
3 changed files with 4246 additions and 4232 deletions

View file

@ -6,6 +6,21 @@
)
(define-public podman
(package
(inherit gnu:podman)
(name "podman")
(version "4.3.0")
(source (origin
(method url-fetch)
(uri (list
(string-append "https://github.com/containers/podman/archive/refs/tags/v" version ".tar.gz")
))
(sha256 (base32 "0d5zfi6drac23vb2la2v5s2g27hbz9wgiyvlxfm7hgzjh2ds18sm"))
))
)
)
(define-public podman-4.2.1
(package
(inherit gnu:podman)
(name "podman")

File diff suppressed because it is too large Load diff

View file

@ -11,6 +11,7 @@
#:use-module (gnu packages compression)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages linux)
#:use-module (gnu packages security-token)
)
(define-public libcbor-0.8.0
(package