1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-30 17:41:12 +00:00
nixpkgs/pkgs/applications/office/scribus/unstable.nix

34 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, mkDerivation, pkgconfig, cmake, qtbase, cairo, pixman,
2018-10-05 13:03:11 +01:00
boost, cups, fontconfig, freetype, hunspell, libjpeg, libtiff, libxml2, lcms2,
2019-09-17 18:28:21 +01:00
podofo, poppler, poppler_data, python2, qtimageformats, qttools, harfbuzzFull }:
2018-10-05 13:03:11 +01:00
let
pythonEnv = python2.withPackages(ps: [ps.tkinter ps.pillow]);
in
mkDerivation rec {
pname = "scribus";
version = "1.5.5";
2018-10-05 13:03:11 +01:00
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-devel/${pname}-${version}.tar.xz";
sha256 = "eQiyGmzoQyafWM7fX495GJMlfmIBzOX73ccNrKL+P3E=";
2018-10-05 13:03:11 +01:00
};
enableParallelBuilding = true;
nativeBuildInputs = [ pkgconfig cmake ];
2018-10-05 13:03:11 +01:00
buildInputs = [
qtbase cairo pixman boost cups fontconfig
2018-10-05 13:03:11 +01:00
freetype hunspell libjpeg libtiff libxml2 lcms2 podofo poppler
2019-09-17 18:28:21 +01:00
poppler_data pythonEnv qtimageformats qttools harfbuzzFull
2018-10-05 13:03:11 +01:00
];
meta = {
maintainers = [ stdenv.lib.maintainers.erictapen ];
platforms = stdenv.lib.platforms.linux;
description = "Desktop Publishing (DTP) and Layout program for Linux";
homepage = http://www.scribus.net;
license = stdenv.lib.licenses.gpl2;
};
}