nixpkgs/pkgs/applications/misc/zathura/core/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

2018-05-25 07:38:09 +00:00
{ stdenv, fetchurl, meson, ninja, makeWrapper, pkgconfig
2018-03-27 19:39:19 +00:00
, appstream-glib, desktop-file-utils, python3
, gtk, girara, gettext, libxml2
2018-08-21 15:27:31 +00:00
, sqlite, glib, texlive, libintl, libseccomp
2018-02-14 19:52:15 +00:00
, gtk-mac-integration, synctexSupport ? true
2017-02-15 14:01:40 +00:00
}:
assert synctexSupport -> texlive != null;
2017-02-15 14:01:40 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2018-03-27 19:39:19 +00:00
name = "zathura-core-${version}";
version = "0.4.1";
src = fetchurl {
2018-03-27 19:39:19 +00:00
url = "https://pwmt.org/projects/zathura/download/zathura-${version}.tar.xz";
sha256 = "1znr3psqda06xklzj8mn452w908llapcg1rj468jwpg0wzv6pxfn";
};
2018-02-14 19:52:15 +00:00
nativeBuildInputs = [
2018-03-27 19:39:19 +00:00
meson ninja pkgconfig appstream-glib desktop-file-utils python3.pkgs.sphinx
gettext makeWrapper libxml2
2018-03-14 19:15:06 +00:00
];
2018-02-14 19:52:15 +00:00
2017-02-15 14:01:40 +00:00
buildInputs = [
2018-08-21 15:27:31 +00:00
gtk girara libintl libseccomp
2018-03-27 19:39:19 +00:00
sqlite glib
2018-02-14 19:52:15 +00:00
] ++ optional synctexSupport texlive.bin.core
++ optional stdenv.isDarwin [ gtk-mac-integration ];
2016-03-01 19:41:31 +00:00
2017-02-15 14:01:40 +00:00
meta = {
2018-03-27 19:39:19 +00:00
homepage = https://pwmt.org/projects/zathura/;
description = "A core component for zathura PDF viewer";
2018-03-27 19:39:19 +00:00
license = licenses.zlib;
platforms = platforms.unix;
maintainers = with maintainers; [ garbas ];
};
}