2021-03-21 01:22:13 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, pkg-config
|
|
|
|
, glib
|
|
|
|
, gdk-pixbuf
|
|
|
|
, pango
|
|
|
|
, cairo
|
|
|
|
, libxml2
|
|
|
|
, bzip2
|
|
|
|
, libintl
|
|
|
|
, ApplicationServices
|
|
|
|
, Foundation
|
|
|
|
, libobjc
|
2021-08-30 17:16:57 +00:00
|
|
|
, rustPlatform
|
2021-03-21 01:22:13 +00:00
|
|
|
, rustc
|
2021-11-29 07:01:33 +00:00
|
|
|
, rust
|
2021-03-21 01:22:13 +00:00
|
|
|
, cargo
|
2021-05-07 21:18:14 +00:00
|
|
|
, gnome
|
2021-03-21 01:22:13 +00:00
|
|
|
, vala
|
2021-08-30 17:16:57 +00:00
|
|
|
, withIntrospection ? stdenv.hostPlatform == stdenv.buildPlatform
|
2021-03-21 01:22:13 +00:00
|
|
|
, gobject-introspection
|
|
|
|
, nixosTests
|
|
|
|
}:
|
2013-01-29 01:39:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-03-21 01:22:13 +00:00
|
|
|
pname = "librsvg";
|
2022-02-19 05:09:27 +00:00
|
|
|
version = "2.52.6";
|
2013-09-07 00:09:11 +00:00
|
|
|
|
2018-05-09 01:58:06 +00:00
|
|
|
outputs = [ "out" "dev" "installedTests" ];
|
2016-04-24 12:58:04 +00:00
|
|
|
|
2021-03-21 01:22:13 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2022-02-19 05:09:27 +00:00
|
|
|
sha256 = "o/k5oeajpgQIJEYy0DI/jDsg60t7AAU24uW9k7jv+q0=";
|
2021-03-21 01:22:13 +00:00
|
|
|
};
|
2020-04-06 09:20:00 +00:00
|
|
|
|
2021-08-30 17:16:57 +00:00
|
|
|
cargoVendorDir = "vendor";
|
|
|
|
|
2021-08-30 20:15:14 +00:00
|
|
|
strictDeps = true;
|
|
|
|
|
|
|
|
depsBuildBuild = [ pkg-config ];
|
|
|
|
|
2021-03-21 01:22:13 +00:00
|
|
|
nativeBuildInputs = [
|
2021-08-30 20:15:14 +00:00
|
|
|
gdk-pixbuf
|
2021-03-21 01:22:13 +00:00
|
|
|
pkg-config
|
|
|
|
rustc
|
|
|
|
cargo
|
|
|
|
vala
|
2021-08-30 17:16:57 +00:00
|
|
|
rustPlatform.cargoSetupHook
|
|
|
|
] ++ lib.optionals withIntrospection [
|
2021-03-21 01:22:13 +00:00
|
|
|
gobject-introspection
|
|
|
|
];
|
2013-09-07 00:09:11 +00:00
|
|
|
|
2021-03-21 01:22:13 +00:00
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
|
|
|
bzip2
|
|
|
|
pango
|
|
|
|
libintl
|
2021-08-30 17:16:57 +00:00
|
|
|
] ++ lib.optionals withIntrospection [
|
2021-08-30 20:15:14 +00:00
|
|
|
gobject-introspection
|
2021-03-21 01:22:13 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2021-10-31 07:00:08 +00:00
|
|
|
ApplicationServices
|
|
|
|
Foundation
|
2021-03-21 01:22:13 +00:00
|
|
|
libobjc
|
|
|
|
];
|
2013-09-07 00:09:11 +00:00
|
|
|
|
2021-03-21 01:22:13 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
glib
|
|
|
|
gdk-pixbuf
|
|
|
|
cairo
|
|
|
|
];
|
2012-03-08 22:45:42 +00:00
|
|
|
|
2018-05-09 01:58:06 +00:00
|
|
|
configureFlags = [
|
2021-08-30 17:16:57 +00:00
|
|
|
(lib.enableFeature withIntrospection "introspection")
|
|
|
|
|
2021-03-21 01:22:13 +00:00
|
|
|
# Vapi does not build on MacOS.
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/117081#issuecomment-827782004
|
2021-08-30 17:16:57 +00:00
|
|
|
(lib.enableFeature (withIntrospection && !stdenv.isDarwin) "vala")
|
|
|
|
|
2018-05-09 01:58:06 +00:00
|
|
|
"--enable-installed-tests"
|
|
|
|
"--enable-always-build-tests"
|
2021-11-29 07:01:33 +00:00
|
|
|
] ++ lib.optional stdenv.isDarwin "--disable-Bsymbolic"
|
|
|
|
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "RUST_TARGET=${rust.toRustTarget stdenv.hostPlatform}";
|
2018-05-09 01:58:06 +00:00
|
|
|
|
|
|
|
makeFlags = [
|
2021-03-21 01:22:13 +00:00
|
|
|
"installed_test_metadir=${placeholder "installedTests"}/share/installed-tests/RSVG"
|
|
|
|
"installed_testdir=${placeholder "installedTests"}/libexec/installed-tests/RSVG"
|
2018-05-09 01:58:06 +00:00
|
|
|
];
|
2013-09-07 00:09:11 +00:00
|
|
|
|
2021-03-21 01:22:13 +00:00
|
|
|
doCheck = false; # all tests fail on libtool-generated rsvg-convert not being able to find coreutils
|
2013-01-29 01:39:15 +00:00
|
|
|
|
2012-11-11 17:02:27 +00:00
|
|
|
# It wants to add loaders and update the loaders.cache in gdk-pixbuf
|
|
|
|
# Patching the Makefiles to it creates rsvg specific loaders and the
|
|
|
|
# relevant loader.cache here.
|
|
|
|
# The loaders.cache can be used by setting GDK_PIXBUF_MODULE_FILE to
|
|
|
|
# point to this file in a wrapper.
|
|
|
|
postConfigure = ''
|
2015-06-14 13:59:52 +00:00
|
|
|
GDK_PIXBUF=$out/lib/gdk-pixbuf-2.0/2.10.0
|
2012-11-11 17:02:27 +00:00
|
|
|
mkdir -p $GDK_PIXBUF/loaders
|
|
|
|
sed -e "s#gdk_pixbuf_moduledir = .*#gdk_pixbuf_moduledir = $GDK_PIXBUF/loaders#" \
|
|
|
|
-i gdk-pixbuf-loader/Makefile
|
|
|
|
sed -e "s#gdk_pixbuf_cache_file = .*#gdk_pixbuf_cache_file = $GDK_PIXBUF/loaders.cache#" \
|
|
|
|
-i gdk-pixbuf-loader/Makefile
|
|
|
|
sed -e "s#\$(GDK_PIXBUF_QUERYLOADERS)#GDK_PIXBUF_MODULEDIR=$GDK_PIXBUF/loaders \$(GDK_PIXBUF_QUERYLOADERS)#" \
|
|
|
|
-i gdk-pixbuf-loader/Makefile
|
2017-09-30 23:30:17 +00:00
|
|
|
|
|
|
|
# Fix thumbnailer path
|
2019-05-22 11:03:39 +00:00
|
|
|
sed -e "s#@bindir@\(/gdk-pixbuf-thumbnailer\)#${gdk-pixbuf}/bin\1#g" \
|
2017-09-30 23:30:17 +00:00
|
|
|
-i gdk-pixbuf-loader/librsvg.thumbnailer.in
|
2021-10-22 02:41:10 +00:00
|
|
|
|
|
|
|
# 'error: linker `cc` not found' when cross-compiling
|
|
|
|
export RUSTFLAGS="-Clinker=$CC"
|
2012-11-11 17:02:27 +00:00
|
|
|
'';
|
2015-06-14 13:59:52 +00:00
|
|
|
|
2021-08-30 17:16:57 +00:00
|
|
|
# Not generated when cross compiling.
|
|
|
|
postInstall = lib.optionalString (stdenv.hostPlatform == stdenv.buildPlatform) ''
|
|
|
|
# Merge gdkpixbuf and librsvg loaders
|
2021-09-19 18:27:45 +00:00
|
|
|
cat ${lib.getLib gdk-pixbuf}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache $GDK_PIXBUF/loaders.cache > $GDK_PIXBUF/loaders.cache.tmp
|
2021-08-30 17:16:57 +00:00
|
|
|
mv $GDK_PIXBUF/loaders.cache.tmp $GDK_PIXBUF/loaders.cache
|
2015-06-14 13:59:52 +00:00
|
|
|
'';
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2018-03-03 02:30:09 +00:00
|
|
|
passthru = {
|
2021-05-07 21:18:14 +00:00
|
|
|
updateScript = gnome.updateScript {
|
2018-03-03 02:30:09 +00:00
|
|
|
packageName = pname;
|
2021-03-20 23:57:24 +00:00
|
|
|
versionPolicy = "odd-unstable";
|
2018-03-03 02:30:09 +00:00
|
|
|
};
|
2021-04-16 13:27:47 +00:00
|
|
|
|
|
|
|
tests = {
|
|
|
|
installedTests = nixosTests.installed-tests.librsvg;
|
|
|
|
};
|
2018-03-03 02:30:09 +00:00
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-03-03 02:30:09 +00:00
|
|
|
description = "A small library to render SVG images to Cairo surfaces";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://wiki.gnome.org/Projects/LibRsvg";
|
2018-03-03 02:30:09 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2020-04-01 12:40:51 +00:00
|
|
|
maintainers = teams.gnome.members;
|
2018-03-03 02:30:09 +00:00
|
|
|
platforms = platforms.unix;
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2009-09-30 05:27:34 +00:00
|
|
|
}
|