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

42 lines
1.1 KiB
Nix
Raw Normal View History

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