podman-compose: init at 0.1.5
This commit is contained in:
parent
1451a52a38
commit
2a6a39bc8c
2 changed files with 23 additions and 0 deletions
21
pkgs/applications/virtualization/podman-compose/default.nix
Normal file
21
pkgs/applications/virtualization/podman-compose/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ lib, buildPythonApplication, fetchPypi, podman, pyyaml }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
version = "0.1.5";
|
||||
pname = "podman-compose";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1sgbc889zq127qhxa9frhswa1mid19fs5qnyzfihx648y5i968pv";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyyaml podman ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An implementation of docker-compose with podman backend";
|
||||
homepage = "https://github.com/containers/podman-compose";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ sikmir ];
|
||||
};
|
||||
}
|
|
@ -5721,6 +5721,8 @@ in
|
|||
|
||||
podman = callPackage ../applications/virtualization/podman { };
|
||||
|
||||
podman-compose = python3Packages.callPackage ../applications/virtualization/podman-compose {};
|
||||
|
||||
pod2mdoc = callPackage ../tools/misc/pod2mdoc { };
|
||||
|
||||
poedit = callPackage ../tools/text/poedit { };
|
||||
|
|
Loading…
Reference in a new issue