2021-01-21 17:00:13 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchurl,
|
|
|
|
meson,
|
|
|
|
ninja,
|
|
|
|
pkg-config,
|
|
|
|
glib,
|
|
|
|
gobject-introspection,
|
|
|
|
cairo,
|
2021-05-07 21:18:14 +00:00
|
|
|
libarchive,
|
|
|
|
freetype,
|
|
|
|
libjpeg,
|
|
|
|
libtiff,
|
|
|
|
gnome,
|
|
|
|
lcms2,
|
2016-09-18 19:35:23 +00:00
|
|
|
}:
|
|
|
|
|
2018-12-25 03:06:47 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 01:10:30 +00:00
|
|
|
pname = "libgxps";
|
2021-03-01 13:17:21 +00:00
|
|
|
version = "0.3.2";
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2021-10-13 15:49:11 +00:00
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
"dev"
|
|
|
|
];
|
|
|
|
|
2016-09-18 19:35:23 +00:00
|
|
|
src = fetchurl {
|
2021-01-21 17:00:13 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-03-01 13:17:21 +00:00
|
|
|
sha256 = "bSeGclajXM+baSU+sqiKMrrKO5fV9O9/guNmf6Q1JRw=";
|
2016-09-18 19:35:23 +00:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
gobject-introspection
|
|
|
|
];
|
2019-02-14 12:31:17 +00:00
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
cairo
|
|
|
|
freetype
|
|
|
|
libjpeg
|
|
|
|
libtiff
|
|
|
|
lcms2
|
|
|
|
];
|
2016-09-18 19:35:23 +00:00
|
|
|
propagatedBuildInputs = [ libarchive ];
|
|
|
|
|
2017-10-03 01:29:08 +00:00
|
|
|
mesonFlags =
|
|
|
|
[
|
|
|
|
"-Denable-test=false"
|
2021-07-17 19:42:50 +00:00
|
|
|
]
|
|
|
|
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
|
|
"-Ddisable-introspection=true"
|
2017-10-03 01:29:08 +00:00
|
|
|
];
|
2016-09-18 19:35:23 +00:00
|
|
|
|
2018-03-03 01:10:30 +00:00
|
|
|
passthru = {
|
2021-05-07 21:18:14 +00:00
|
|
|
updateScript = gnome.updateScript {
|
2018-03-03 01:10:30 +00:00
|
|
|
packageName = pname;
|
|
|
|
versionPolicy = "none";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-03-03 01:10:30 +00:00
|
|
|
description = "GObject based library for handling and rendering XPS documents";
|
2024-04-30 14:44:27 +00:00
|
|
|
homepage = "https://gitlab.gnome.org/GNOME/libgxps";
|
2018-03-03 01:10:30 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2020-04-01 12:40:51 +00:00
|
|
|
maintainers = teams.gnome.members;
|
2018-03-03 01:10:30 +00:00
|
|
|
platforms = platforms.unix;
|
2016-09-18 19:35:23 +00:00
|
|
|
};
|
|
|
|
}
|