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

62 lines
1.7 KiB
Nix
Raw Normal View History

2017-02-15 14:01:40 +00:00
{ stdenv, fetchurl, makeWrapper, pkgconfig
, gtk, girara, ncurses, gettext, docutils
2018-02-14 19:52:15 +00:00
, file, sqlite, glib, texlive, libintlOrEmpty
, 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 {
2017-02-15 14:01:40 +00:00
name = "zathura-core-${version}";
2017-12-31 01:01:21 +00:00
version = "0.3.8";
src = fetchurl {
2017-02-15 14:01:40 +00:00
url = "http://pwmt.org/projects/zathura/download/zathura-${version}.tar.gz";
2017-12-31 01:01:21 +00:00
sha256 = "0dz5pky3vmf3s2cp2rv1c099gb1s49p9xlgm3ghyy4pzyxc8bgs6";
};
icon = ./icon.xpm;
2018-02-14 19:52:15 +00:00
nativeBuildInputs = [
pkgconfig
] ++ optional stdenv.isDarwin [ libintlOrEmpty ];
2017-02-15 14:01:40 +00:00
buildInputs = [
file gtk girara
2017-02-15 14:01:40 +00:00
gettext makeWrapper 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
2018-02-14 19:52:15 +00:00
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
makeFlags = [
"PREFIX=$(out)"
2017-12-31 01:01:21 +00:00
"RSTTOMAN=${docutils}/bin/rst2man.py"
"VERBOSE=1"
"TPUT=${ncurses.out}/bin/tput"
2017-02-15 14:01:40 +00:00
(optionalString synctexSupport "WITH_SYNCTEX=1")
];
2013-04-26 11:21:56 +00:00
postInstall = ''
2014-02-20 09:31:16 +00:00
wrapProgram "$out/bin/zathura" \
2017-02-15 14:01:40 +00:00
--prefix PATH ":" "${makeBinPath [ file ]}" \
2014-02-20 09:31:16 +00:00
--prefix XDG_CONFIG_DIRS ":" "$out/etc"
install -Dm644 $icon $out/share/pixmaps/pwmt.xpm
2014-02-20 09:31:16 +00:00
mkdir -pv $out/etc
echo "set window-icon $out/share/pixmaps/pwmt.xpm" > $out/etc/zathurarc
echo "Icon=pwmt" >> $out/share/applications/zathura.desktop
2013-04-26 11:21:56 +00:00
'';
2017-02-15 14:01:40 +00:00
meta = {
homepage = http://pwmt.org/projects/zathura/;
description = "A core component for zathura PDF viewer";
2017-02-15 14:01:40 +00:00
license = licenses.zlib;
2018-02-14 19:52:15 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ garbas ];
};
}