base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / po / podlet / package.nix
blobc759da032181a29dcc074123ce3cf1b9b95fe76b
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "podlet";
9   version = "0.3.0";
11   src = fetchFromGitHub {
12     owner = "containers";
13     repo = "podlet";
14     rev = "refs/tags/v${version}";
15     hash = "sha256-STkYCaXBoQSmFKpMdsKzqFGXHh9s0jeGi5K2itj8jmc=";
16   };
18   cargoHash = "sha256-G+X9b4PAQ+1TkzGIs1g+qz7HYjwPJ/CvaHMiOAn3dV8=";
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   };