117 lines
2.6 KiB
Nix
117 lines
2.6 KiB
Nix
{
|
|
qtModule,
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
qtbase,
|
|
qtdeclarative,
|
|
qtlocation,
|
|
qtmultimedia,
|
|
qtsensors,
|
|
qtwebchannel,
|
|
fontconfig,
|
|
libwebp,
|
|
libxml2,
|
|
libxslt,
|
|
sqlite,
|
|
systemd,
|
|
glib,
|
|
gst_all_1,
|
|
cmake,
|
|
bison,
|
|
flex,
|
|
gdb,
|
|
gperf,
|
|
perl,
|
|
pkg-config,
|
|
python3,
|
|
ruby,
|
|
}:
|
|
|
|
let
|
|
hyphen = stdenv.mkDerivation rec {
|
|
pname = "hyphen";
|
|
version = "2.8.8";
|
|
src = fetchurl {
|
|
url = "http://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-${version}.tar.gz";
|
|
sha256 = "304636d4eccd81a14b6914d07b84c79ebb815288c76fe027b9ebff6ff24d5705";
|
|
};
|
|
postPatch = ''
|
|
patchShebangs tests
|
|
'';
|
|
buildInputs = [ perl ];
|
|
};
|
|
in
|
|
qtModule {
|
|
pname = "qtwebkit";
|
|
propagatedBuildInputs = [
|
|
qtbase
|
|
qtdeclarative
|
|
qtlocation
|
|
qtsensors
|
|
qtwebchannel
|
|
] ++ lib.optional stdenv.hostPlatform.isDarwin qtmultimedia;
|
|
buildInputs = [
|
|
fontconfig
|
|
libwebp
|
|
libxml2
|
|
libxslt
|
|
sqlite
|
|
glib
|
|
gst_all_1.gstreamer
|
|
gst_all_1.gst-plugins-base
|
|
hyphen
|
|
];
|
|
nativeBuildInputs = [
|
|
bison
|
|
flex
|
|
gdb
|
|
gperf
|
|
perl
|
|
pkg-config
|
|
python3
|
|
ruby
|
|
cmake
|
|
];
|
|
|
|
cmakeFlags =
|
|
[ "-DPORT=Qt" ]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"-DQt5Multimedia_DIR=${lib.getDev qtmultimedia}/lib/cmake/Qt5Multimedia"
|
|
"-DQt5MultimediaWidgets_DIR=${lib.getDev qtmultimedia}/lib/cmake/Qt5MultimediaWidgets"
|
|
"-DMACOS_FORCE_SYSTEM_XML_LIBRARIES=OFF"
|
|
];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString (
|
|
[
|
|
# with gcc7 this warning blows the log over Hydra's limit
|
|
"-Wno-expansion-to-defined"
|
|
]
|
|
# with gcc8, -Wclass-memaccess became part of -Wall and this too exceeds the logging limit
|
|
++ lib.optional stdenv.cc.isGNU "-Wno-class-memaccess"
|
|
# with clang this warning blows the log over Hydra's limit
|
|
++ lib.optional stdenv.hostPlatform.isDarwin "-Wno-inconsistent-missing-override"
|
|
++ lib.optional (
|
|
!stdenv.hostPlatform.isDarwin
|
|
) ''-DNIXPKGS_LIBUDEV="${lib.getLib systemd}/lib/libudev"''
|
|
);
|
|
|
|
doCheck = false; # fails 13 out of 13 tests (ctest)
|
|
|
|
# remove forbidden references to $TMPDIR
|
|
preFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
|
|
patchelf --shrink-rpath --allowed-rpath-prefixes "$NIX_STORE" "$out"/libexec/*
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [
|
|
abbradar
|
|
periklis
|
|
];
|
|
knownVulnerabilities = [
|
|
"QtWebkit upstream is unmaintained and receives no security updates, see https://blogs.gnome.org/mcatanzaro/2022/11/04/stop-using-qtwebkit/"
|
|
];
|
|
};
|
|
}
|