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

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

202 lines
6.5 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
2022-12-07 05:21:46 +00:00
, cargo-auditable-cargo-wrapper
, gi-docgen
, python3Packages
, gnome
2021-03-21 01:22:13 +00:00
, vala
, writeScript
, withIntrospection ? stdenv.hostPlatform.emulatorAvailable buildPackages
, buildPackages
2021-03-21 01:22:13 +00:00
, gobject-introspection
, _experimental-update-script-combinators
, common-updater-scripts
, jq
, nix
2021-03-21 01:22:13 +00:00
}:
2013-01-29 01:39:15 +00:00
stdenv.mkDerivation (finalAttrs: {
2021-03-21 01:22:13 +00:00
pname = "librsvg";
version = "2.56.2";
outputs = [ "out" "dev" ] ++ lib.optionals withIntrospection [
"devdoc"
];
2016-04-24 12:58:04 +00:00
2021-03-21 01:22:13 +00:00
src = fetchurl {
url = "mirror://gnome/sources/librsvg/${lib.versions.majorMinor finalAttrs.version}/librsvg-${finalAttrs.version}.tar.xz";
sha256 = "PsPE2Pc+C6S5EwAmlp6DccCStzQpjTbi/bPrSvzsEgA=";
2021-03-21 01:22:13 +00:00
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit (finalAttrs) src;
name = "librsvg-deps-${finalAttrs.version}";
hash = "sha256-GIEpZ5YMvmYQLcaLXseXQ6gIF7ICtUKq28JCVJ3PEYk=";
# TODO: move this to fetchCargoTarball
dontConfigure = true;
};
2021-08-30 20:15:14 +00:00
strictDeps = true;
depsBuildBuild = [
pkg-config
];
2021-08-30 20:15:14 +00:00
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
2022-12-07 05:21:46 +00:00
cargo-auditable-cargo-wrapper
python3Packages.docutils
2021-03-21 01:22:13 +00:00
vala
rustPlatform.cargoSetupHook
] ++ lib.optionals withIntrospection [
2021-03-21 01:22:13 +00:00
gobject-introspection
gi-docgen
2021-03-21 01:22:13 +00:00
];
2021-03-21 01:22:13 +00:00
buildInputs = [
libxml2
bzip2
pango
libintl
vala # for share/vala/Makefile.vapigen
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")
(lib.enableFeature withIntrospection "vala")
2018-05-09 01:58:06 +00:00
"--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
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
GDK_PIXBUF_QUERYLOADERS = writeScript "gdk-pixbuf-loader-loaders-wrapped" ''
${lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) (stdenv.hostPlatform.emulator buildPackages)} ${lib.getDev gdk-pixbuf}/bin/gdk-pixbuf-query-loaders
'';
preConfigure = ''
PKG_CONFIG_VAPIGEN_VAPIGEN="$(type -p vapigen)"
export PKG_CONFIG_VAPIGEN_VAPIGEN
'';
# 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"
'' + lib.optionalString ((stdenv.buildPlatform != stdenv.hostPlatform) && (stdenv.hostPlatform.emulatorAvailable buildPackages)) ''
# the replacement is the native conditional
substituteInPlace gdk-pixbuf-loader/Makefile \
--replace 'RUN_QUERY_LOADER_TEST = false' 'RUN_QUERY_LOADER_TEST = test -z "$(DESTDIR)"' \
'';
# Not generated when cross compiling.
postInstall = lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) ''
# 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
mkdir -p "$out/share/bash-completion/completions/"
$out/bin/rsvg-convert --completion bash > "$out/share/bash-completion/completions/rsvg-convert"
mkdir -p "$out/share/zsh/site-functions/"
$out/bin/rsvg-convert --completion zsh > "$out/share/zsh/site-functions/_rsvg-convert"
mkdir -p "$out/share/fish/vendor_completions.d/"
$out/bin/rsvg-convert --completion fish > "$out/share/fish/vendor_completions.d/rsvg-convert.fish"
'';
postFixup = lib.optionalString withIntrospection ''
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
moveToOutput "share/doc" "$devdoc"
'';
2018-03-03 02:30:09 +00:00
passthru = {
updateScript =
let
updateSource = gnome.updateScript {
packageName = "librsvg";
};
updateLockfile = {
command = [
"sh"
"-c"
''
PATH=${lib.makeBinPath [
common-updater-scripts
jq
nix
]}
# update-source-version does not allow updating to the same version so we need to clear it temporarily.
# Get the current version so that we can restore it later.
latestVersion=$(nix-instantiate --eval -A librsvg.version | jq --raw-output)
# Clear the version. Provide hash so that we do not need to do pointless TOFU.
# Needs to be a fake SRI hash that is non-zero, since u-s-v uses zero as a placeholder.
# Also cannot be here verbatim or u-s-v would be confused what to replace.
update-source-version librsvg 0 "sha256-${lib.fixedWidthString 44 "B" "="}" --source-key=cargoDeps > /dev/null
update-source-version librsvg "$latestVersion" --source-key=cargoDeps > /dev/null
''
];
# Experimental feature: do not copy!
supportedFeatures = [ "silent" ];
};
in
_experimental-update-script-combinators.sequence [
updateSource
updateLockfile
];
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;
mainProgram = "rsvg-convert";
2018-03-03 02:30:09 +00:00
platforms = platforms.unix;
};
})