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

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

41 lines
1.1 KiB
Nix
Raw Normal View History

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