Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
96 lines
2.0 KiB
Nix
96 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
desktop-file-utils,
|
|
gtk3,
|
|
libpng,
|
|
exiv2,
|
|
lcms,
|
|
intltool,
|
|
gettext,
|
|
shared-mime-info,
|
|
glib,
|
|
gdk-pixbuf,
|
|
perl,
|
|
wrapGAppsHook3,
|
|
webp-pixbuf-loader,
|
|
gnome,
|
|
librsvg,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "viewnior-gtk3";
|
|
version = "1.8-unstable-2023-11-23";
|
|
|
|
src = fetchFromGitHub {
|
|
#owner = "hellosiyan";
|
|
#repo = "Viewnior";
|
|
owner = "Artturin";
|
|
repo = "Viewnior";
|
|
# https://github.com/hellosiyan/Viewnior/pull/142
|
|
rev = "23ce6e5630b24509d8009f17a833ad9e59b85fab";
|
|
hash = "sha256-+/f0+og1Dd7eJK7P83+q4lf4SjzW2g6qNk8ZTxNAuDA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
desktop-file-utils
|
|
intltool
|
|
gettext
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libpng
|
|
exiv2
|
|
lcms
|
|
shared-mime-info
|
|
glib
|
|
gdk-pixbuf
|
|
perl
|
|
];
|
|
|
|
postInstall = ''
|
|
export GDK_PIXBUF_MODULE_FILE="${
|
|
gnome._gdkPixbufCacheBuilder_DO_NOT_USE {
|
|
extraLoaders = [
|
|
webp-pixbuf-loader
|
|
librsvg
|
|
];
|
|
}
|
|
}"
|
|
|
|
# gtk3 viewnior can be launched in wayland mode and does so by default
|
|
# but moving around in a zoomed in image doesn't work
|
|
gappsWrapperArgs+=(
|
|
--set-default GDK_BACKEND x11
|
|
)
|
|
'';
|
|
|
|
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 = "https://siyanpanayotov.com/project/viewnior/";
|
|
maintainers = with maintainers; [
|
|
smironov
|
|
artturin
|
|
];
|
|
platforms = platforms.gnu ++ platforms.linux;
|
|
mainProgram = "viewnior";
|
|
};
|
|
}
|