2018-09-05 01:44:17 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, fixDarwinDylibNames, meson, ninja, pkgconfig, gettext, python3, libxml2, libxslt, docbook_xsl
|
2018-03-04 21:06:08 +00:00
|
|
|
, docbook_xml_dtd_43, gtk-doc, glib, libtiff, libjpeg, libpng, libX11, gnome3
|
2018-12-02 11:41:15 +00:00
|
|
|
, jasper, gobject-introspection, doCheck ? false, makeWrapper }:
|
2011-09-20 07:21:56 +01:00
|
|
|
|
2013-10-05 19:21:13 +01:00
|
|
|
let
|
2018-03-03 05:20:46 +00:00
|
|
|
pname = "gdk-pixbuf";
|
2018-09-05 01:44:17 +01:00
|
|
|
version = "2.38.0";
|
|
|
|
in stdenv.mkDerivation rec {
|
2018-03-03 05:20:46 +00:00
|
|
|
name = "${pname}-${version}";
|
2011-09-20 07:21:56 +01:00
|
|
|
|
2018-09-05 01:44:17 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
|
|
sha256 = "0ixfmnxjylx06mjaw116apymwi1a8rnkmkbbvqaxxg2pfwy9fl6x";
|
2011-09-20 07:21:56 +01:00
|
|
|
};
|
|
|
|
|
2018-05-31 23:13:15 +01:00
|
|
|
patches = [
|
|
|
|
# TODO: since 2.36.8 gdk-pixbuf gets configured to use mime-type sniffing,
|
|
|
|
# which requires access to shared-mime-info files during runtime.
|
|
|
|
# For now, we are patching the build script to avoid the dependency.
|
|
|
|
./no-mime-sniffing.patch
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2018-09-05 01:44:17 +01:00
|
|
|
# Move installed tests to a separate output
|
|
|
|
./installed-tests-path.patch
|
2018-05-31 23:13:15 +01:00
|
|
|
|
|
|
|
(fetchpatch {
|
2018-09-05 01:44:17 +01:00
|
|
|
url = https://gitlab.gnome.org/GNOME/gdk-pixbuf/commit/a7d582f75a71320554b881e063a65f4ced679c1c.patch;
|
|
|
|
sha256 = "0z0w52bh4hcrdllbgrqvh12iqzr7k1pb0wdr9vz2qslg1kjk4j92";
|
2018-05-31 23:13:15 +01:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" "man" "devdoc" "installedTests" ];
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
2018-05-31 16:41:14 +01:00
|
|
|
|
2011-09-20 07:21:56 +01:00
|
|
|
# !!! We might want to factor out the gdk-pixbuf-xlib subpackage.
|
2018-05-31 23:13:15 +01:00
|
|
|
buildInputs = [ libX11 ];
|
2011-09-20 07:21:56 +01:00
|
|
|
|
2018-05-31 23:13:15 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson ninja pkgconfig gettext python3 libxml2 libxslt docbook_xsl docbook_xml_dtd_43
|
2018-12-02 11:41:15 +00:00
|
|
|
gtk-doc gobject-introspection makeWrapper
|
2018-05-31 23:13:15 +01:00
|
|
|
]
|
2018-05-28 19:21:45 +01:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2011-09-20 07:21:56 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ glib libtiff libjpeg libpng jasper ];
|
|
|
|
|
2018-05-31 23:13:15 +01:00
|
|
|
mesonFlags = [
|
|
|
|
"-Ddocs=true"
|
|
|
|
"-Djasper=true"
|
|
|
|
"-Dx11=true"
|
2018-12-02 11:41:15 +00:00
|
|
|
"-Dgir=${if gobject-introspection != null then "true" else "false"}"
|
2018-06-06 09:49:36 +01:00
|
|
|
];
|
2018-05-31 23:13:15 +01:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x build-aux/* # patchShebangs only applies to executables
|
|
|
|
patchShebangs build-aux
|
2016-12-28 19:16:12 +00:00
|
|
|
|
2018-05-31 23:13:15 +01:00
|
|
|
substituteInPlace tests/meson.build --subst-var-by installedtestsprefix "$installedTests"
|
2015-10-19 18:12:01 +01:00
|
|
|
'';
|
|
|
|
|
2016-12-28 19:16:12 +00:00
|
|
|
postInstall =
|
2018-06-06 11:00:55 +01:00
|
|
|
# meson erroneously installs loaders with .dylib extension on Darwin.
|
|
|
|
# Their @rpath has to be replaced before gdk-pixbuf-query-loaders looks at them.
|
|
|
|
stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
for f in $out/${passthru.moduleDir}/*.dylib; do
|
|
|
|
install_name_tool -change @rpath/libgdk_pixbuf-2.0.0.dylib $out/lib/libgdk_pixbuf-2.0.0.dylib $f
|
|
|
|
mv $f ''${f%.dylib}.so
|
|
|
|
done
|
2016-12-28 19:16:12 +00:00
|
|
|
''
|
2018-06-06 11:00:55 +01:00
|
|
|
# All except one utility seem to be only useful during building.
|
|
|
|
+ ''
|
2016-12-28 19:16:12 +00:00
|
|
|
moveToOutput "bin" "$dev"
|
|
|
|
moveToOutput "bin/gdk-pixbuf-thumbnailer" "$out"
|
2018-05-31 23:13:15 +01:00
|
|
|
|
|
|
|
# We need to install 'loaders.cache' in lib/gdk-pixbuf-2.0/2.10.0/
|
|
|
|
$dev/bin/gdk-pixbuf-query-loaders --update-cache
|
2016-12-28 19:16:12 +00:00
|
|
|
'';
|
2011-09-20 07:21:56 +01:00
|
|
|
|
2018-06-06 10:48:23 +01:00
|
|
|
# The fixDarwinDylibNames hook doesn't patch binaries.
|
2018-05-28 22:55:39 +01:00
|
|
|
preFixup = stdenv.lib.optionalString stdenv.isDarwin ''
|
2018-05-29 07:46:39 +01:00
|
|
|
for f in $out/bin/* $dev/bin/*; do
|
2018-05-30 00:13:59 +01:00
|
|
|
install_name_tool -change @rpath/libgdk_pixbuf-2.0.0.dylib $out/lib/libgdk_pixbuf-2.0.0.dylib $f
|
2018-05-29 07:46:39 +01:00
|
|
|
done
|
2018-05-28 22:55:39 +01:00
|
|
|
'';
|
|
|
|
|
2018-09-05 01:44:17 +01:00
|
|
|
preInstall = ''
|
|
|
|
PATH=$PATH:$out/bin # for install script
|
|
|
|
'';
|
|
|
|
|
2015-08-21 11:56:55 +01:00
|
|
|
# The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB).
|
2018-04-25 04:20:18 +01:00
|
|
|
inherit doCheck;
|
2013-10-05 19:21:13 +01:00
|
|
|
|
2018-03-03 05:20:46 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "gdk_pixbuf";
|
|
|
|
};
|
2018-03-27 15:23:21 +01:00
|
|
|
|
|
|
|
# gdk_pixbuf_moduledir variable from gdk-pixbuf-2.0.pc
|
|
|
|
moduleDir = "lib/gdk-pixbuf-2.0/2.10.0/loaders";
|
2018-03-03 05:20:46 +00:00
|
|
|
};
|
|
|
|
|
2015-10-28 11:05:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 07:21:56 +01:00
|
|
|
description = "A library for image loading and manipulation";
|
|
|
|
homepage = http://library.gnome.org/devel/gdk-pixbuf/;
|
2015-10-28 11:05:37 +00:00
|
|
|
maintainers = [ maintainers.eelco ];
|
2018-08-20 18:32:10 +01:00
|
|
|
license = licenses.lgpl21;
|
2015-10-28 11:05:37 +00:00
|
|
|
platforms = platforms.unix;
|
2011-09-20 07:21:56 +01:00
|
|
|
};
|
|
|
|
}
|