podlet: init at 0.3.0 (#347281)

authored by Aleksana and committed by GitHub 24f198fc 7cf50843

+28
+28
pkgs/by-name/po/podlet/package.nix
··· 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 5 + }: 6 + 7 + rustPlatform.buildRustPackage rec { 8 + pname = "podlet"; 9 + version = "0.3.0"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "containers"; 13 + repo = "podlet"; 14 + rev = "refs/tags/v${version}"; 15 + hash = "sha256-STkYCaXBoQSmFKpMdsKzqFGXHh9s0jeGi5K2itj8jmc="; 16 + }; 17 + 18 + cargoHash = "sha256-G+X9b4PAQ+1TkzGIs1g+qz7HYjwPJ/CvaHMiOAn3dV8="; 19 + 20 + meta = { 21 + description = "Generate Podman Quadlet files from a Podman command, compose file, or existing object"; 22 + homepage = "https://github.com/containers/podlet"; 23 + changelog = "https://github.com/containers/podlet/blob/v${version}/CHANGELOG.md"; 24 + license = lib.licenses.mpl20; 25 + maintainers = with lib.maintainers; [ qwqawawow ]; 26 + mainProgram = "podlet"; 27 + }; 28 + }