2020-02-09 04:39:23 +01:00
|
|
|
{ boost
|
|
|
|
, cairo
|
|
|
|
, cmake
|
|
|
|
, cups
|
|
|
|
, fetchpatch
|
|
|
|
, fetchurl
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
|
|
|
, harfbuzzFull
|
|
|
|
, hunspell
|
|
|
|
, lcms2
|
|
|
|
, libjpeg
|
|
|
|
, libtiff
|
|
|
|
, libxml2
|
|
|
|
, mkDerivation
|
|
|
|
, pixman
|
|
|
|
, pkgconfig
|
|
|
|
, podofo
|
|
|
|
, poppler
|
|
|
|
, poppler_data
|
2020-11-11 11:39:49 +01:00
|
|
|
, python3
|
2020-02-09 04:39:23 +01:00
|
|
|
, qtbase
|
|
|
|
, qtimageformats
|
|
|
|
, qttools
|
2021-01-11 08:54:33 +01:00
|
|
|
, lib, stdenv
|
2020-02-09 04:39:23 +01:00
|
|
|
}:
|
2018-10-05 14:03:11 +02:00
|
|
|
|
|
|
|
let
|
2020-11-11 11:39:49 +01:00
|
|
|
pythonEnv = python3.withPackages (
|
2020-02-09 04:39:23 +01:00
|
|
|
ps: [
|
|
|
|
ps.pillow
|
|
|
|
ps.tkinter
|
|
|
|
]
|
|
|
|
);
|
2019-07-05 17:42:08 +02:00
|
|
|
in
|
2019-08-09 17:28:49 +02:00
|
|
|
mkDerivation rec {
|
|
|
|
pname = "scribus";
|
2020-02-09 04:39:23 +01:00
|
|
|
|
2020-11-11 11:39:49 +01:00
|
|
|
version = "1.5.6.1";
|
2018-10-05 14:03:11 +02:00
|
|
|
|
2019-08-09 17:28:49 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/${pname}/${pname}-devel/${pname}-${version}.tar.xz";
|
2020-11-11 11:39:49 +01:00
|
|
|
sha256 = "sha256-1CV2lVOc+kDerYq9rwTFHjTU10vK1aLJNNCObp1Dt6s=";
|
2018-10-05 14:03:11 +02:00
|
|
|
};
|
|
|
|
|
2020-02-09 04:39:23 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
|
|
|
];
|
|
|
|
|
2018-10-05 14:03:11 +02:00
|
|
|
buildInputs = [
|
2020-02-09 04:39:23 +01:00
|
|
|
boost
|
|
|
|
cairo
|
|
|
|
cups
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
harfbuzzFull
|
|
|
|
hunspell
|
|
|
|
lcms2
|
|
|
|
libjpeg
|
|
|
|
libtiff
|
|
|
|
libxml2
|
|
|
|
pixman
|
|
|
|
podofo
|
|
|
|
poppler
|
|
|
|
poppler_data
|
|
|
|
pythonEnv
|
|
|
|
qtbase
|
|
|
|
qtimageformats
|
|
|
|
qttools
|
2018-10-05 14:03:11 +02:00
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-02-09 04:39:23 +01:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
erictapen
|
|
|
|
kiwi
|
|
|
|
];
|
|
|
|
platforms = platforms.linux;
|
2018-10-05 14:03:11 +02:00
|
|
|
description = "Desktop Publishing (DTP) and Layout program for Linux";
|
2020-04-24 17:05:58 +02:00
|
|
|
homepage = "https://www.scribus.net";
|
2020-02-09 04:39:23 +01:00
|
|
|
# There are a lot of licenses... https://github.com/scribusproject/scribus/blob/20508d69ca4fc7030477db8dee79fd1e012b52d2/COPYING#L15-L19
|
|
|
|
license = with licenses; [
|
|
|
|
bsd3
|
|
|
|
gpl2
|
|
|
|
mit
|
|
|
|
publicDomain
|
|
|
|
];
|
2018-10-05 14:03:11 +02:00
|
|
|
};
|
|
|
|
}
|