2019-11-07 14:38:41 +01:00
|
|
|
{ stdenv, fetchurl, nixosTests, fixDarwinDylibNames, meson, ninja, pkgconfig, gettext, python3, libxml2, libxslt, docbook_xsl
|
2018-03-04 22:06:08 +01:00
|
|
|
, docbook_xml_dtd_43, gtk-doc, glib, libtiff, libjpeg, libpng, libX11, gnome3
|
2020-01-08 15:36:39 +01:00
|
|
|
, gobject-introspection, doCheck ? false, makeWrapper
|
|
|
|
, fetchpatch
|
|
|
|
}:
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2013-10-05 20:21:13 +02:00
|
|
|
let
|
2018-03-03 06:20:46 +01:00
|
|
|
pname = "gdk-pixbuf";
|
2019-10-12 11:11:46 +02:00
|
|
|
version = "2.40.0";
|
2018-09-05 02:44:17 +02:00
|
|
|
in stdenv.mkDerivation rec {
|
2018-03-03 06:20:46 +01:00
|
|
|
name = "${pname}-${version}";
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2018-09-05 02:44:17 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2019-10-12 11:11:46 +02:00
|
|
|
sha256 = "1rnlx9yfw970maxi2x6niaxmih5la11q1ilr7gzshz2kk585k0hm";
|
2011-09-20 08:21:56 +02:00
|
|
|
};
|
|
|
|
|
2018-06-01 00:13:15 +02:00
|
|
|
patches = [
|
2018-09-05 02:44:17 +02:00
|
|
|
# Move installed tests to a separate output
|
|
|
|
./installed-tests-path.patch
|
2020-01-08 15:36:39 +01:00
|
|
|
# Temporary until the fix is released.
|
|
|
|
(fetchpatch {
|
|
|
|
name = "tests-circular-table.patch";
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/gdk-pixbuf/merge_requests/59.diff";
|
|
|
|
sha256 = "0kaflac3mrh6031hwxk7j9fhli775hc503818h8zfl6b28zyn93f";
|
|
|
|
})
|
2018-06-01 00:13:15 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" "man" "devdoc" "installedTests" ];
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
2018-05-31 17:41:14 +02:00
|
|
|
|
2011-09-20 08:21:56 +02:00
|
|
|
# !!! We might want to factor out the gdk-pixbuf-xlib subpackage.
|
2018-06-01 00:13:15 +02:00
|
|
|
buildInputs = [ libX11 ];
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2018-06-01 00:13:15 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson ninja pkgconfig gettext python3 libxml2 libxslt docbook_xsl docbook_xml_dtd_43
|
2020-02-27 00:12:13 +01:00
|
|
|
gtk-doc gobject-introspection makeWrapper glib
|
2018-06-01 00:13:15 +02:00
|
|
|
]
|
2018-05-28 20:21:45 +02:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2019-11-17 19:44:10 +01:00
|
|
|
propagatedBuildInputs = [ glib libtiff libjpeg libpng ];
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2018-06-01 00:13:15 +02:00
|
|
|
mesonFlags = [
|
|
|
|
"-Ddocs=true"
|
|
|
|
"-Dx11=true"
|
2018-12-02 12:41:15 +01:00
|
|
|
"-Dgir=${if gobject-introspection != null then "true" else "false"}"
|
2019-02-28 23:11:36 +01:00
|
|
|
"-Dgio_sniffing=false"
|
2018-06-06 10:49:36 +02:00
|
|
|
];
|
2018-06-01 00:13:15 +02:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
chmod +x build-aux/* # patchShebangs only applies to executables
|
|
|
|
patchShebangs build-aux
|
2016-12-28 20:16:12 +01:00
|
|
|
|
2018-06-01 00:13:15 +02:00
|
|
|
substituteInPlace tests/meson.build --subst-var-by installedtestsprefix "$installedTests"
|
2015-10-19 19:12:01 +02:00
|
|
|
'';
|
|
|
|
|
2016-12-28 20:16:12 +01:00
|
|
|
postInstall =
|
2018-06-06 12:00:55 +02: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 20:16:12 +01:00
|
|
|
''
|
2018-06-06 12:00:55 +02:00
|
|
|
# All except one utility seem to be only useful during building.
|
|
|
|
+ ''
|
2016-12-28 20:16:12 +01:00
|
|
|
moveToOutput "bin" "$dev"
|
|
|
|
moveToOutput "bin/gdk-pixbuf-thumbnailer" "$out"
|
2020-02-27 00:12:13 +01:00
|
|
|
'' + stdenv.lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
2018-06-01 00:13:15 +02: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 20:16:12 +01:00
|
|
|
'';
|
2011-09-20 08:21:56 +02:00
|
|
|
|
2018-06-06 11:48:23 +02:00
|
|
|
# The fixDarwinDylibNames hook doesn't patch binaries.
|
2018-05-28 23:55:39 +02:00
|
|
|
preFixup = stdenv.lib.optionalString stdenv.isDarwin ''
|
2018-05-29 08:46:39 +02:00
|
|
|
for f in $out/bin/* $dev/bin/*; do
|
2018-05-30 01:13:59 +02:00
|
|
|
install_name_tool -change @rpath/libgdk_pixbuf-2.0.0.dylib $out/lib/libgdk_pixbuf-2.0.0.dylib $f
|
2018-05-29 08:46:39 +02:00
|
|
|
done
|
2018-05-28 23:55:39 +02:00
|
|
|
'';
|
|
|
|
|
2018-09-05 02:44:17 +02:00
|
|
|
preInstall = ''
|
|
|
|
PATH=$PATH:$out/bin # for install script
|
|
|
|
'';
|
|
|
|
|
2015-08-21 12:56:55 +02:00
|
|
|
# The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB).
|
2018-04-25 05:20:18 +02:00
|
|
|
inherit doCheck;
|
2013-10-05 20:21:13 +02:00
|
|
|
|
2018-03-03 06:20:46 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
2018-03-27 16:23:21 +02:00
|
|
|
|
2019-11-07 14:38:41 +01:00
|
|
|
tests = {
|
|
|
|
installedTests = nixosTests.installed-tests.gdk-pixbuf;
|
|
|
|
};
|
|
|
|
|
2018-03-27 16:23:21 +02:00
|
|
|
# gdk_pixbuf_moduledir variable from gdk-pixbuf-2.0.pc
|
|
|
|
moduleDir = "lib/gdk-pixbuf-2.0/2.10.0/loaders";
|
2018-03-03 06:20:46 +01:00
|
|
|
};
|
|
|
|
|
2015-10-28 12:05:37 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 08:21:56 +02:00
|
|
|
description = "A library for image loading and manipulation";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://library.gnome.org/devel/gdk-pixbuf/";
|
2015-10-28 12:05:37 +01:00
|
|
|
maintainers = [ maintainers.eelco ];
|
2018-08-20 19:32:10 +02:00
|
|
|
license = licenses.lgpl21;
|
2015-10-28 12:05:37 +01:00
|
|
|
platforms = platforms.unix;
|
2011-09-20 08:21:56 +02:00
|
|
|
};
|
|
|
|
}
|