nixpkgs/pkgs/development/libraries/librsvg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

141 lines
3.8 KiB
Nix
Raw Normal View History

2021-03-21 01:22:13 +00:00
{ lib
, stdenv
, fetchurl
, pkg-config
, glib
, gdk-pixbuf
, pango
, cairo
, libxml2
, bzip2
, libintl
, ApplicationServices
, Foundation
, libobjc
, 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
, gnome
2021-03-21 01:22:13 +00:00
, vala
, 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";
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
};
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
rustPlatform.cargoSetupHook
] ++ lib.optionals withIntrospection [
2021-03-21 01:22:13 +00:00
gobject-introspection
];
2021-03-21 01:22:13 +00:00
buildInputs = [
libxml2
bzip2
pango
libintl
] ++ 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 [
ApplicationServices
Foundation
2021-03-21 01:22:13 +00:00
libobjc
];
2021-03-21 01:22:13 +00:00
propagatedBuildInputs = [
glib
gdk-pixbuf
cairo
];
2018-05-09 01:58:06 +00:00
configureFlags = [
(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
(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
];
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
# 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 = ''
GDK_PIXBUF=$out/lib/gdk-pixbuf-2.0/2.10.0
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
# Fix thumbnailer path
2019-05-22 11:03:39 +00:00
sed -e "s#@bindir@\(/gdk-pixbuf-thumbnailer\)#${gdk-pixbuf}/bin\1#g" \
-i gdk-pixbuf-loader/librsvg.thumbnailer.in
# 'error: linker `cc` not found' when cross-compiling
export RUSTFLAGS="-Clinker=$CC"
'';
# 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
mv $GDK_PIXBUF/loaders.cache.tmp $GDK_PIXBUF/loaders.cache
'';
2018-03-03 02:30:09 +00:00
passthru = {
updateScript = gnome.updateScript {
2018-03-03 02:30:09 +00:00
packageName = pname;
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
};
meta = with lib; {
2018-03-03 02:30:09 +00:00
description = "A small library to render SVG images to Cairo surfaces";
homepage = "https://wiki.gnome.org/Projects/LibRsvg";
2018-03-03 02:30:09 +00:00
license = licenses.lgpl2Plus;
maintainers = teams.gnome.members;
2018-03-03 02:30:09 +00:00
platforms = platforms.unix;
};
}