{ lib , stdenv , fetchFromGitHub , qtsvg , qtwayland , qttools , exiv2 , wrapQtAppsHook , cmake }: stdenv.mkDerivation rec { pname = "pineapple-pictures"; version = "0.7.1"; src = fetchFromGitHub { owner = "BLumia"; repo = "pineapple-pictures"; rev = version; hash = "sha256-6peNZc+rrQrUFSrn1AK8lZsy4RQf9DwpmXY0McfEus8="; }; nativeBuildInputs = [ cmake qttools wrapQtAppsHook ]; buildInputs = [ qtsvg qtwayland exiv2 ]; cmakeFlags = [ "-DPREFER_QT_5=OFF" ]; meta = with lib; { description = "Homebrew lightweight image viewer"; homepage = "https://github.com/BLumia/pineapple-pictures"; license = licenses.mit; platforms = platforms.linux; mainProgram = "ppic"; maintainers = with maintainers; [ rewine ]; }; }