2015-10-04 09:52:40 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk2, libpng, exiv2, lcms
|
2019-05-22 12:03:39 +01:00
|
|
|
, intltool, gettext, shared-mime-info, glib, gdk-pixbuf, perl}:
|
2013-03-12 19:43:37 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "viewnior";
|
2016-06-19 17:47:14 +01:00
|
|
|
version = "1.6";
|
2015-10-04 09:52:40 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "xsisqox";
|
|
|
|
repo = "Viewnior";
|
2019-08-15 13:41:18 +01:00
|
|
|
rev = "${pname}-${version}";
|
2016-06-19 17:47:14 +01:00
|
|
|
sha256 = "06ppv3r85l3id4ij6h4y5fgm3nib2587fdrdv9fccyi75zk7fs0p";
|
2013-03-12 19:43:37 +00:00
|
|
|
};
|
|
|
|
|
2015-10-04 09:52:40 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2013-03-12 19:43:37 +00:00
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig gtk2 libpng exiv2 lcms intltool gettext
|
2019-05-22 12:03:39 +01:00
|
|
|
shared-mime-info glib gdk-pixbuf perl
|
2013-03-12 19:43:37 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Fast and simple image viewer";
|
2013-03-12 19:43:37 +00:00
|
|
|
longDescription =
|
|
|
|
'' Viewnior is insipred by big projects like Eye of Gnome, because of it's
|
|
|
|
usability and richness,and by GPicView, because of it's lightweight design and
|
|
|
|
minimal interface. So here comes Viewnior - small and light, with no compromise
|
|
|
|
with the quality of it's functions. The program is made with better integration
|
|
|
|
in mind (follows Gnome HIG2).
|
|
|
|
'';
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2013-03-12 19:43:37 +00:00
|
|
|
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://siyanpanayotov.com/project/viewnior/";
|
2013-03-12 19:43:37 +00:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.smironov ];
|
|
|
|
|
2018-04-30 23:47:47 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;
|
2013-03-12 19:43:37 +00:00
|
|
|
};
|
|
|
|
}
|