nixpkgs/pkgs/desktops/gnome-3/core/libgxps/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

2017-10-03 03:29:08 +02:00
{ stdenv, fetchurl, meson, ninja, pkgconfig, glib, gobjectIntrospection, cairo
2018-03-03 02:10:30 +01:00
, libarchive, freetype, libjpeg, libtiff, gnome3
}:
2018-03-03 02:10:30 +01:00
let
pname = "libgxps";
version = "0.3.0";
in stdenv.mkDerivation rec {
name = "${pname}-${version}";
src = fetchurl {
2018-03-03 02:10:30 +01:00
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
2017-10-03 03:29:08 +02:00
sha256 = "412b1343bd31fee41f7204c47514d34c563ae34dafa4cc710897366bd6cd0fae";
};
2017-10-03 03:29:08 +02:00
nativeBuildInputs = [ meson ninja pkgconfig gobjectIntrospection ];
buildInputs = [ glib cairo freetype libjpeg libtiff ];
propagatedBuildInputs = [ libarchive ];
2017-10-03 03:29:08 +02:00
mesonFlags = [
"-Denable-test=false"
"-Dwith-liblcms2=false"
];
2018-03-03 02:10:30 +01:00
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "gnome3.${pname}";
versionPolicy = "none";
};
};
meta = with stdenv.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;
license = licenses.lgpl21Plus;
maintainers = gnome3.maintainers;
platforms = platforms.unix;
};
}