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

37 lines
1.0 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, meson, ninja, pkg-config, glib, gobject-introspection, cairo
2019-02-14 12:31:17 +00:00
, libarchive, freetype, libjpeg, libtiff, gnome3, lcms2
}:
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";
src = fetchurl {
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=";
};
nativeBuildInputs = [ meson ninja pkg-config gobject-introspection ];
2019-02-14 12:31:17 +00:00
buildInputs = [ glib cairo freetype libjpeg libtiff lcms2 ];
propagatedBuildInputs = [ libarchive ];
2017-10-03 02:29:08 +01:00
mesonFlags = [
"-Denable-test=false"
];
2018-03-03 01:10:30 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
versionPolicy = "none";
};
};
meta = with lib; {
2018-03-03 01:10:30 +00:00
description = "A GObject based library for handling and rendering XPS documents";
homepage = "https://wiki.gnome.org/Projects/libgxps";
2018-03-03 01:10:30 +00:00
license = licenses.lgpl21Plus;
maintainers = teams.gnome.members;
2018-03-03 01:10:30 +00:00
platforms = platforms.unix;
};
}