Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 23 lines 691 B view raw
1{ lib, buildPythonApplication, fetchFromGitHub, python-dotenv, pyyaml }: 2 3buildPythonApplication rec { 4 version = "1.0.6"; 5 pname = "podman-compose"; 6 7 src = fetchFromGitHub { 8 repo = "podman-compose"; 9 owner = "containers"; 10 rev = "v${version}"; 11 sha256 = "sha256-TsNM5xORqwWge+UCijKptwbAcIz1uZFN9BuIOl28vIU="; 12 }; 13 14 propagatedBuildInputs = [ pyyaml python-dotenv ]; 15 16 meta = { 17 description = "An implementation of docker-compose with podman backend"; 18 homepage = "https://github.com/containers/podman-compose"; 19 license = lib.licenses.gpl2Only; 20 platforms = lib.platforms.unix; 21 maintainers = [ lib.maintainers.sikmir ] ++ lib.teams.podman.members; 22 }; 23}