{ boost , cairo , cmake , cups , fetchpatch , fetchurl , fontconfig , freetype , harfbuzzFull , hunspell , lcms2 , libjpeg , libtiff , libxml2 , mkDerivation , pixman , pkgconfig , podofo , poppler , poppler_data , python3 , qtbase , qtimageformats , qttools , stdenv }: let pythonEnv = python3.withPackages ( ps: [ ps.pillow ps.tkinter ] ); in mkDerivation rec { pname = "scribus"; version = "1.5.6.1"; src = fetchurl { url = "mirror://sourceforge/${pname}/${pname}-devel/${pname}-${version}.tar.xz"; sha256 = "sha256-1CV2lVOc+kDerYq9rwTFHjTU10vK1aLJNNCObp1Dt6s="; }; enableParallelBuilding = true; nativeBuildInputs = [ cmake pkgconfig ]; buildInputs = [ boost cairo cups fontconfig freetype harfbuzzFull hunspell lcms2 libjpeg libtiff libxml2 pixman podofo poppler poppler_data pythonEnv qtbase qtimageformats qttools ]; meta = with stdenv.lib; { maintainers = with maintainers; [ erictapen kiwi ]; platforms = platforms.linux; description = "Desktop Publishing (DTP) and Layout program for Linux"; homepage = "https://www.scribus.net"; # There are a lot of licenses... https://github.com/scribusproject/scribus/blob/20508d69ca4fc7030477db8dee79fd1e012b52d2/COPYING#L15-L19 license = with licenses; [ bsd3 gpl2 mit publicDomain ]; }; }