mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
97 lines
2.0 KiB
Nix
97 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch,
|
|
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 rec {
|
|
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";
|
|
};
|
|
}
|