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
78 lines
1.2 KiB
Nix
78 lines
1.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
docbook_xsl,
|
|
exempi,
|
|
gdk-pixbuf,
|
|
glib,
|
|
gobject-introspection,
|
|
gtk3,
|
|
gtk-doc,
|
|
itstool,
|
|
lcms2,
|
|
libexif,
|
|
libjpeg,
|
|
libpeas,
|
|
librsvg,
|
|
libxml2,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
python3,
|
|
wrapGAppsHook3,
|
|
cinnamon-desktop,
|
|
yelp-tools,
|
|
xapp,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xviewer";
|
|
version = "3.4.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = "xviewer";
|
|
rev = version;
|
|
hash = "sha256-WvA8T6r9DtlpOZLMEOILO6/0Am3bhCLM8FnwXvALjS8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
docbook_xsl
|
|
gobject-introspection
|
|
gtk-doc
|
|
itstool
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
wrapGAppsHook3
|
|
yelp-tools
|
|
];
|
|
|
|
buildInputs = [
|
|
cinnamon-desktop
|
|
exempi
|
|
gdk-pixbuf
|
|
glib
|
|
gtk3
|
|
lcms2
|
|
libexif
|
|
libjpeg
|
|
libpeas
|
|
librsvg
|
|
libxml2
|
|
xapp
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Generic image viewer from Linux Mint";
|
|
mainProgram = "xviewer";
|
|
homepage = "https://github.com/linuxmint/xviewer";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ tu-maurice ];
|
|
teams = [ teams.cinnamon ];
|
|
};
|
|
}
|