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

45 lines
1.2 KiB
Nix
Raw Normal View History

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