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

52 lines
1.4 KiB
Nix
Raw Normal View History

2018-03-27 12:39:19 -07:00
{ stdenv, fetchurl, fetchpatch, meson, ninja, makeWrapper, pkgconfig
, appstream-glib, desktop-file-utils, python3
, gtk, girara, ncurses, gettext, libxml2
, file, 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.3.9";
src = fetchurl {
2018-03-27 12:39:19 -07:00
url = "https://pwmt.org/projects/zathura/download/zathura-${version}.tar.xz";
sha256 = "0z09kz92a2n8qqv3cy8bx5j5k612g2f9mmh4szqlc7yvi39aax1g";
};
2018-03-27 12:39:19 -07:00
patches = [
(fetchpatch {
url = https://git.pwmt.org/pwmt/zathura/commit/4223464db68529f9a2064ed760fb7746b3c0df6b.patch;
sha256 = "004j68b7c8alxzyx0d80lr5i43cgh7lbqm5fx3d77ihci7hdmxnw";
})
];
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-03-27 12:39:19 -07:00
file gtk girara libintl libseccomp
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
2013-04-26 04:21:56 -07:00
postInstall = ''
2014-02-20 01:31:16 -08:00
wrapProgram "$out/bin/zathura" \
2018-03-27 12:39:19 -07:00
--prefix PATH ":" "${makeBinPath [ file ]}"
2013-04-26 04:21:56 -07: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 ];
};
}