nixpkgs/pkgs/applications/misc/zathura/pdf-mupdf/default.nix

30 lines
950 B
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, pkgconfig, zathura_core, gtk, girara, mupdf, openssl
, libjpeg, jbig2dec, openjpeg, fetchpatch }:
2014-05-17 14:16:50 +02:00
stdenv.mkDerivation rec {
version = "0.3.1";
2014-05-17 14:16:50 +02:00
name = "zathura-pdf-mupdf-${version}";
2015-11-25 16:04:30 +01:00
src = fetchurl {
url = "https://pwmt.org/projects/zathura-pdf-mupdf/download/${name}.tar.gz";
sha256 = "06zqn8z6a0hfsx3s1kzqvqzb73afgcl6z5r062sxv7kv570fvffr";
2014-05-17 14:16:50 +02:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ zathura_core gtk girara openssl mupdf libjpeg jbig2dec openjpeg ];
2014-05-17 14:16:50 +02:00
2015-11-25 16:04:30 +01:00
makeFlags = [ "PREFIX=$(out)" "PLUGINDIR=$(out)/lib" ];
2014-05-17 14:16:50 +02:00
meta = with lib; {
2014-05-17 14:16:50 +02:00
homepage = http://pwmt.org/projects/zathura/;
description = "A zathura PDF plugin (mupdf)";
longDescription = ''
The zathura-pdf-mupdf plugin adds PDF support to zathura by
using the mupdf rendering library.
'';
license = licenses.zlib;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
2014-05-17 14:16:50 +02:00
};
}