{ lib , stdenv , fetchFromGitLab , appstream-glib , desktop-file-utils , itstool , meson , ninja , pkg-config , python3 , rustPlatform , wrapGAppsHook , glib , gtk4 , libadwaita }: stdenv.mkDerivation rec { pname = "warp"; version = "0.2.0"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "World"; repo = "warp"; rev = "v${version}"; hash = "sha256-AtSU/vN20ePyxhSSl0RB2a4KKpd6PTUCC4n5RIuYVr4="; }; postPatch = '' patchShebangs build-aux ''; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; hash = "sha256-DbKoZLB8XIZy5bIOC6blrNa3x4oCVG0Bl9xp6ARgw0c="; }; nativeBuildInputs = [ appstream-glib desktop-file-utils itstool meson ninja pkg-config python3 wrapGAppsHook ] ++ (with rustPlatform; [ cargoSetupHook rust.cargo rust.rustc ]); buildInputs = [ glib gtk4 libadwaita ]; meta = { description = "Fast and secure file transfer"; homepage = "https://apps.gnome.org/app/app.drey.Warp"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ dotlambda ]; platforms = lib.platforms.linux; }; }