mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ symlinkJoin, lib, makeWrapper, zathura_core, file, plugins ? [] }:
|
|
|
|
let
|
|
pluginsPath = lib.makeSearchPath "lib/zathura" plugins;
|
|
|
|
in symlinkJoin {
|
|
name = "zathura-with-plugins-${zathura_core.version}";
|
|
|
|
paths = with zathura_core; [ man dev out ];
|
|
|
|
inherit plugins;
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
postBuild = ''
|
|
makeWrapper ${zathura_core.bin}/bin/zathura $out/bin/zathura \
|
|
--prefix PATH ":" "${lib.makeBinPath [ file ]}" \
|
|
--add-flags --plugins-dir=${pluginsPath}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://git.pwmt.org/pwmt/zathura/";
|
|
description = "A highly customizable and functional PDF viewer";
|
|
longDescription = ''
|
|
Zathura is a highly customizable and functional PDF viewer based on the
|
|
poppler rendering library and the GTK toolkit. The idea behind zathura
|
|
is an application that provides a minimalistic and space saving interface
|
|
as well as an easy usage that mainly focuses on keyboard interaction.
|
|
'';
|
|
license = licenses.zlib;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ smironov globin ];
|
|
};
|
|
}
|