summary refs log tree commit diff
diff options
context:
space:
mode:
authorAroun <zahrun@murena.io>2023-03-21 23:54:48 +0530
committerAroun <zahrun@murena.io>2023-03-22 00:00:38 +0530
commit4babb8cf8988807b39dbbd69f2b3f91f2a7391bf (patch)
tree024bfd842d694f9b18fb6e330e7341f61342cd46
parent9745d185b08ff323c9535e2f6429a87ff65f20a5 (diff)
downloadnixpkgs-4babb8cf8988807b39dbbd69f2b3f91f2a7391bf.tar
nixpkgs-4babb8cf8988807b39dbbd69f2b3f91f2a7391bf.tar.gz
nixpkgs-4babb8cf8988807b39dbbd69f2b3f91f2a7391bf.tar.bz2
nixpkgs-4babb8cf8988807b39dbbd69f2b3f91f2a7391bf.tar.lz
nixpkgs-4babb8cf8988807b39dbbd69f2b3f91f2a7391bf.tar.xz
nixpkgs-4babb8cf8988807b39dbbd69f2b3f91f2a7391bf.tar.zst
nixpkgs-4babb8cf8988807b39dbbd69f2b3f91f2a7391bf.zip
podman: add pointer to related nix option
-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 120bd2670f6..8db3c0e90fa 100644
--- a/pkgs/applications/virtualization/podman/default.nix
+++ b/pkgs/applications/virtualization/podman/default.nix
@@ -145,6 +145,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;