2010-07-28 18:01:17 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, freetype, lcms, libtiff, libxml2
|
2012-08-07 15:41:18 +00:00
|
|
|
, libart_lgpl, qt4, python, cups, fontconfig, libjpeg
|
|
|
|
, zlib, libpng, xorg, cairo, podofo, aspell, boostHeaders, cmake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-21 00:20:32 +00:00
|
|
|
name = "scribus-1.4.3";
|
2009-10-18 04:44:01 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-08-07 15:41:18 +00:00
|
|
|
url = "mirror://sourceforge/scribus/scribus/${name}.tar.xz";
|
2013-12-21 00:20:32 +00:00
|
|
|
sha256 = "1zxgl2g299rllfy5ihs5skicpv7zcmz149ahraami69gqcag6bn7";
|
2009-10-18 04:44:01 +00:00
|
|
|
};
|
|
|
|
|
2011-11-02 15:00:11 +00:00
|
|
|
enableParallelBuilding = true;
|
2009-10-18 04:44:01 +00:00
|
|
|
|
2012-08-07 15:41:18 +00:00
|
|
|
buildInputs = with xorg;
|
|
|
|
[ pkgconfig cmake freetype lcms libtiff libxml2 libart_lgpl qt4
|
2009-10-20 10:33:38 +00:00
|
|
|
python cups fontconfig
|
2011-11-02 15:00:11 +00:00
|
|
|
libjpeg zlib libpng podofo aspell cairo
|
2012-08-07 15:41:18 +00:00
|
|
|
boostHeaders # for internal 2geom library
|
|
|
|
libXaw libXext libX11 libXtst libXi libXinerama
|
|
|
|
libpthreadstubs libXau libXdmcp
|
2011-11-02 15:00:11 +00:00
|
|
|
];
|
2009-10-18 04:44:01 +00:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 18:01:17 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
description = "Desktop Publishing (DTP) and Layout program for Linux";
|
2009-10-20 10:33:38 +00:00
|
|
|
homepage = http://www.scribus.net;
|
|
|
|
license = "GPLv2";
|
|
|
|
};
|
2009-10-18 04:44:01 +00:00
|
|
|
}
|