mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, desktop-file-utils, gtk2, libpng, exiv2, lcms
|
|
, intltool, gettext, shared-mime-info, glib, gdk-pixbuf, perl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "viewnior";
|
|
version = "1.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hellosiyan";
|
|
repo = "Viewnior";
|
|
rev = "${pname}-${version}";
|
|
sha256 = "0y4hk3vq8psba5k615w18qj0kbdfp5w0lm98nv5apy6hmcpwfyig";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
desktop-file-utils
|
|
intltool
|
|
gettext
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk2
|
|
libpng
|
|
exiv2
|
|
lcms
|
|
shared-mime-info
|
|
glib
|
|
gdk-pixbuf
|
|
perl
|
|
];
|
|
|
|
meta = with lib; {
|
|
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 = licenses.gpl3;
|
|
homepage = "http://siyanpanayotov.com/project/viewnior/";
|
|
maintainers = with maintainers; [ smironov artturin ];
|
|
platforms = platforms.gnu ++ platforms.linux;
|
|
};
|
|
}
|