summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAroun <zahrun@murena.io>2023-03-21 23:54:48 +0530
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2023-03-23 02:28:19 +0000
commitea0d326e3cb7aaf224a21e165a87c899b44e028e (patch)
tree3f507998592f4765161e3256c97d384ac673da2b
parentMerge pull request #222399 from Zahrun/backport-219489-to-release-22.11 (diff)
downloadnixpkgs-origin/backport-222406-to-release-22.11.tar.gz
podman: add pointer to related nix optionorigin/backport-222406-to-release-22.11
(cherry picked from commit 4babb8cf8988807b39dbbd69f2b3f91f2a7391bf)
-rw-r--r--pkgs/applications/virtualization/podman/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/applications/virtualization/podman/default.nix b/pkgs/applications/virtualization/podman/default.nix
index dabf52ca88af..9ab2f465be8b 100644
--- a/pkgs/applications/virtualization/podman/default.nix
+++ b/pkgs/applications/virtualization/podman/default.nix
@@ -95,6 +95,11 @@ buildGoModule rec {
meta = with lib; {
homepage = "https://podman.io/";
description = "A program for managing pods, containers and container images";
+ longDescription = ''
+ Podman (the POD MANager) is a tool for managing containers and images, volumes mounted into those containers, and pods made from groups of containers. Podman runs containers on Linux, but can also be used on Mac and Windows systems using a Podman-managed virtual machine. Podman is based on libpod, a library for container lifecycle management that is also contained in this repository. The libpod library provides APIs for managing containers, pods, container images, and volumes.
+
+ To install on NixOS, please use the option `virtualisation.podman.enable = true`.
+ '';
changelog = "https://github.com/containers/podman/blob/v${version}/RELEASE_NOTES.md";
license = licenses.asl20;
maintainers = with maintainers; [ marsam ] ++ teams.podman.members;