nixpkgs/pkgs/applications/misc/zathura/cb/default.nix
José Luis Lafuente 053d79dbf0
zathura: 0.4.1 -> 0.4.3, new features and plugin
Update to 0.4.3, compile it with more features and add CB plugin
2019-03-10 22:22:10 +01:00

29 lines
847 B
Nix

{ stdenv, lib, fetchurl, meson, ninja, pkgconfig, zathura_core
, girara, gettext, libarchive }:
stdenv.mkDerivation rec {
name = "zathura-cb-${version}";
version = "0.1.8";
src = fetchurl {
url = "https://pwmt.org/projects/zathura/plugins/download/${name}.tar.xz";
sha256 = "1i6cf0vks501cggwvfsl6qb7mdaf3sszdymphimfvnspw810faj5";
};
nativeBuildInputs = [ meson ninja pkgconfig gettext ];
buildInputs = [ libarchive zathura_core girara ];
PKG_CONFIG_ZATHURA_PLUGINDIR = "lib/zathura";
meta = with lib; {
homepage = https://pwmt.org/projects/zathura-cb/;
description = "A zathura CB plugin";
longDescription = ''
The zathura-cb plugin adds comic book support to zathura.
'';
license = licenses.zlib;
platforms = platforms.unix;
maintainers = with maintainers; [ jlesquembre ];
};
}