Skip to content

Commit

Permalink
epdfview: Fixed SRC URL; Cosmetic Change (#24568)
Browse files Browse the repository at this point in the history
epdfview: Updated Debian Mirror
  • Loading branch information
ndowens authored and joachifm committed Apr 3, 2017
1 parent 438ac66 commit 969ed88
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions pkgs/applications/misc/epdfview/default.nix
@@ -1,14 +1,16 @@
{ stdenv, fetchurl, fetchpatch, pkgconfig, gtk2, poppler }:

stdenv.mkDerivation rec {
name = "epdfview-0.1.8";
name = "epdfview-${version}";
version = "0.1.8";

src = fetchurl {
url = "http://trac.emma-soft.com/epdfview/chrome/site/releases/${name}.tar.bz2";
sha256 = "1w7qybh8ssl4dffi5qfajq8mndw7ipsd92vkim03nywxgjp4i1ll";
url = "mirror://debian/pool/main/e/epdfview/epdfview_${version}.orig.tar.gz";
sha256 = "0ibyb60a0b4n34bsjgvhdw8yf24463ky0hpmf6a2jjqsbm5g4v64";
};

buildInputs = [ pkgconfig gtk2 poppler ];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gtk2 poppler ];

hardeningDisable = [ "format" ];

Expand All @@ -24,16 +26,16 @@ stdenv.mkDerivation rec {
})
];

meta = {
homepage = http://trac.emma-soft.com/epdfview/;
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
viewer, in the lines of Evince but without using the Gnome libraries.
'';
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
platforms = with stdenv.lib.platforms; linux;
license = licenses.gpl2;
maintainers = [ maintainers.astsmtl ];
platforms = platforms.linux;
};
}

0 comments on commit 969ed88

Please sign in to comment.