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

30 lines
878 B
Nix
Raw Normal View History

2018-03-27 12:55:46 -07:00
{ stdenv, fetchurl, meson, ninja, pkgconfig, gtk, zathura_core, girara, djvulibre, gettext }:
stdenv.mkDerivation rec {
2020-02-26 06:44:14 -08:00
pname = "zathura-djvu";
version = "0.2.9";
src = fetchurl {
url = "https://pwmt.org/projects/${pname}/download/${pname}-${version}.tar.xz";
sha256 = "0062n236414db7q7pnn3ccg5111ghxj3407pn9ri08skxskgirln";
};
2018-03-27 12:55:46 -07:00
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = [ djvulibre gettext zathura_core gtk girara ];
2018-03-27 12:55:46 -07:00
PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura";
meta = with stdenv.lib; {
homepage = "https://pwmt.org/projects/zathura-djvu/";
description = "A zathura DJVU plugin";
longDescription = ''
The zathura-djvu plugin adds DjVu support to zathura by using the
djvulibre library.
'';
license = licenses.zlib;
2018-02-14 11:52:15 -08:00
platforms = platforms.unix;
maintainers = with maintainers; [ ];
};
}