{ 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.2"; src = fetchFromGitHub { owner = "marhkb"; repo = pname; rev = "v${version}"; sha256 = "sha256-Kjonyd0xL0QLjPS+U3xDC6AhOOxQmVAZ3STLXaa8eXc="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; sha256 = "sha256-K5oOpo3xJiNg7F549JLGs83658MYcoGfuIcNoF88Njc="; }; 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"; license = licenses.gpl3Only; maintainers = with maintainers; [ figsoda ]; platforms = platforms.linux; }; }