nixpkgs/pkgs/applications/misc/epdfview/default.nix

42 lines
1.7 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, pkgconfig, gtk2, poppler }:
2016-02-09 02:03:28 +00:00
stdenv.mkDerivation rec {
name = "epdfview-${version}";
version = "0.1.8";
2016-02-09 02:03:28 +00:00
src = fetchurl {
url = "mirror://debian/pool/main/e/epdfview/epdfview_${version}.orig.tar.gz";
sha256 = "0ibyb60a0b4n34bsjgvhdw8yf24463ky0hpmf6a2jjqsbm5g4v64";
};
2016-02-09 02:03:28 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 poppler ];
2016-02-09 02:03:28 +00:00
hardeningDisable = [ "format" ];
2016-02-09 02:03:28 +00:00
2014-11-14 13:30:38 +00:00
patches = [ (fetchpatch {
name = "epdfview-0.1.8-glib2-headers.patch";
url = "https://projects.archlinux.org/svntogit/community.git/plain/trunk/epdfview-0.1.8-glib2-headers.patch?h=packages/epdfview&id=40ba115c860bdec31d03a30fa594a7ec2864d634";
2014-11-15 13:39:50 +00:00
sha256 = "17df6s1zij5ficj67xszq6kd88cy620az3ic55065ccnmsd73f8h";
2014-11-14 13:30:38 +00:00
})
(fetchpatch {
name = "epdfview-0.1.8-modern-cups.patch";
url = "https://projects.archlinux.org/svntogit/community.git/plain/trunk/epdfview-0.1.8-modern-cups.patch?h=packages/epdfview&id=40ba115c860bdec31d03a30fa594a7ec2864d634";
2014-11-15 13:39:50 +00:00
sha256 = "07yvgvai2bvbr5fa1mv6lg7nqr0qyryjn1xyjlh8nidg9k9vv001";
2014-11-14 13:30:38 +00:00
})
];
2016-02-09 02:03:28 +00:00
meta = with stdenv.lib; {
homepage = https://packages.debian.org/wheezy/epdfview;
description = "A lightweight PDF document viewer using Poppler and GTK+";
longDescription = ''
ePDFView is a free lightweight PDF document viewer using Poppler and
GTK+ libraries. The aim of ePDFView is to make a simple PDF document
2016-02-09 02:03:28 +00:00
viewer, in the lines of Evince but without using the Gnome libraries.
'';
license = licenses.gpl2;
maintainers = [ maintainers.astsmtl ];
platforms = platforms.linux;
};
}