{ lib , stdenv , fetchFromGitHub , desktop-file-utils , glib , gtk4 , meson , ninja , pkg-config , rustPlatform , wrapGAppsHook4 , gtksourceview5 , libadwaita , libpanel , vte-gtk4 }: stdenv.mkDerivation rec { pname = "pods"; version = "1.0.4"; src = fetchFromGitHub { owner = "marhkb"; repo = pname; rev = "v${version}"; sha256 = "sha256-bBFy8yyEbMlVyJYOlWdffIlnZyVdRLPGebTN6bZmnBI="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; sha256 = "sha256-DV/XJgWRPK+7q7EVltiNRcRGjS9fvHrDKw+w3wNYitQ="; }; nativeBuildInputs = [ desktop-file-utils glib gtk4 meson ninja pkg-config rustPlatform.cargoSetupHook rustPlatform.rust.cargo rustPlatform.rust.rustc wrapGAppsHook4 ]; buildInputs = [ gtk4 gtksourceview5 libadwaita libpanel vte-gtk4 ]; meta = with lib; { description = "A podman desktop application"; homepage = "https://github.com/marhkb/pods"; changelog = "https://github.com/marhkb/pods/releases/tag/v${version}"; license = licenses.gpl3Only; maintainers = with maintainers; [ figsoda ]; platforms = platforms.linux; }; }