66d78e3a1f
svn path=/nixpkgs/trunk/; revision=27435
22 lines
868 B
Nix
22 lines
868 B
Nix
{ stdenv, fetchurl, pkgconfig, gtk, poppler }:
|
|
stdenv.mkDerivation rec {
|
|
name = "epdfview-0.1.8";
|
|
src = fetchurl {
|
|
url = "http://trac.emma-soft.com/epdfview/chrome/site/releases/${name}.tar.bz2";
|
|
sha256 = "1w7qybh8ssl4dffi5qfajq8mndw7ipsd92vkim03nywxgjp4i1ll";
|
|
};
|
|
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;
|
|
};
|
|
}
|