applications/misc/epdfview: New package.
svn path=/nixpkgs/trunk/; revision=19498
This commit is contained in:
parent
2ab641c39e
commit
b207890b81
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl, pkgconfig, gtk, poppler }:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "epdfview-0.1.7";
|
||||
src = fetchurl {
|
||||
url = "http://trac.emma-soft.com/epdfview/chrome/site/releases/${name}.tar.bz2";
|
||||
sha256 = "1s2af09ij5jjqryv4dl10flsdk5p953qp94dymn93fnl93rv1yqa";
|
||||
};
|
||||
buildInputs = [ pkgconfig gtk poppler ];
|
||||
meta = {
|
||||
homepage = http://trac.emma-soft.com/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
|
||||
viewer, in the lines of Evince but without using the Gnome libraries.
|
||||
'';
|
||||
license = "GPLv2";
|
||||
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
|
@ -6786,6 +6786,11 @@ let
|
|||
emacs22Packages = emacsPackages emacs22;
|
||||
emacs23Packages = emacsPackages emacs23;
|
||||
|
||||
epdfview = import ../applications/misc/epdfview {
|
||||
inherit stdenv fetchurl pkgconfig poppler;
|
||||
inherit (gtkLibs) gtk;
|
||||
};
|
||||
|
||||
evince = makeOverridable (import ../applications/misc/evince) {
|
||||
inherit fetchurl stdenv perl perlXMLParser gettext intltool
|
||||
pkgconfig poppler libspectre djvulibre libxslt
|
||||
|
|
Loading…
Reference in New Issue