From e288608304d1f6a42d84c4b821555130db046ef0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 29 Jun 2026 11:43:52 -0700 Subject: [PATCH] podman: enable on all Unix platforms According to https://podman.io/docs/installation it works at least on FreeBSD, Linux, and macOS. --- pkgs/by-name/po/podman/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/po/podman/package.nix b/pkgs/by-name/po/podman/package.nix index f8314ebeefcf..b660bb611ae8 100644 --- a/pkgs/by-name/po/podman/package.nix +++ b/pkgs/by-name/po/podman/package.nix @@ -204,6 +204,6 @@ buildGoModule (finalAttrs: { license = lib.licenses.asl20; teams = [ lib.teams.podman ]; mainProgram = "podman"; - platforms = lib.platforms.linux; + platforms = lib.platforms.unix; }; })