mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-09 15:23:16 +00:00
b232557c45
https://pwmt.org/projects/zathura/changelog/0.5.2/index.html Zathura plugins are updated to the latest versions as well.
29 lines
847 B
Nix
29 lines
847 B
Nix
{ stdenv, lib, fetchurl, meson, ninja, pkg-config, zathura_core
|
|
, girara, gettext, libarchive }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "zathura-cb";
|
|
version = "0.1.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://pwmt.org/projects/${pname}/download/${pname}-${version}.tar.xz";
|
|
sha256 = "1j5v32f9ki35v1jc7a067anhlgqplzrp4fqvznlixfhcm0bwmc49";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config 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 ];
|
|
};
|
|
}
|