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

61 lines
1.6 KiB
Nix
Raw Normal View History

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