scribusUnstable: 2019-01-16 -> 1.5.5

changelog: https://bugs.scribus.net/changelog_page.php?version_id=106

Co-Authored-By: worldofpeace <worldofpeace@protonmail.ch>
This commit is contained in:
Justin Humm
2019-08-10 16:41:23 +02:00
co-authored by worldofpeace
parent a4d6a3f724
commit c39818d3dc
+9 -11
View File
@@ -1,26 +1,24 @@
{ stdenv, fetchsvn, wrapQtAppsHook, pkgconfig, cmake, qtbase, cairo, pixman, { stdenv, fetchurl, mkDerivation, pkgconfig, cmake, qtbase, cairo, pixman,
boost, cups, fontconfig, freetype, hunspell, libjpeg, libtiff, libxml2, lcms2, boost, cups, fontconfig, freetype, hunspell, libjpeg, libtiff, libxml2, lcms2,
podofo, poppler, poppler_data, python2, harfbuzz, qtimageformats, qttools }: podofo, poppler, poppler_data, python2, harfbuzz, qtimageformats, qttools }:
let let
pythonEnv = python2.withPackages(ps: [ps.tkinter ps.pillow]); pythonEnv = python2.withPackages(ps: [ps.tkinter ps.pillow]);
revision = "22806";
in in
stdenv.mkDerivation rec { mkDerivation rec {
name = "scribus-unstable-${version}"; pname = "scribus";
version = "2019-01-16"; version = "1.5.5";
src = fetchsvn { src = fetchurl {
url = "svn://scribus.net/trunk/Scribus"; url = "mirror://sourceforge/${pname}/${pname}-devel/${pname}-${version}.tar.xz";
rev = revision; sha256 = "eQiyGmzoQyafWM7fX495GJMlfmIBzOX73ccNrKL+P3E=";
sha256 = "16xpsbp6kca78jf48n6zdmyjras38xr11paan839hgy4ik83ncn0";
}; };
enableParallelBuilding = true; enableParallelBuilding = true;
nativeBuildInputs = [ wrapQtAppsHook ]; nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ buildInputs = [
pkgconfig cmake qtbase cairo pixman boost cups fontconfig qtbase cairo pixman boost cups fontconfig
freetype hunspell libjpeg libtiff libxml2 lcms2 podofo poppler freetype hunspell libjpeg libtiff libxml2 lcms2 podofo poppler
poppler_data pythonEnv harfbuzz qtimageformats qttools poppler_data pythonEnv harfbuzz qtimageformats qttools
]; ];