18fde25825
This is now done automatically.
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk2, libpng, exiv2, lcms
|
|
, intltool, gettext, shared-mime-info, glib, gdk-pixbuf, perl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "viewnior";
|
|
version = "1.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xsisqox";
|
|
repo = "Viewnior";
|
|
rev = "${pname}-${version}";
|
|
sha256 = "06ppv3r85l3id4ij6h4y5fgm3nib2587fdrdv9fccyi75zk7fs0p";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
buildInputs =
|
|
[ pkgconfig gtk2 libpng exiv2 lcms intltool gettext
|
|
shared-mime-info glib gdk-pixbuf perl
|
|
];
|
|
|
|
meta = {
|
|
description = "Fast and simple image viewer";
|
|
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).
|
|
'';
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
homepage = http://siyanpanayotov.com/project/viewnior/;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.smironov ];
|
|
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;
|
|
};
|
|
}
|