2025-07-24 13:55:40 +02:00

116 lines
2.8 KiB
Nix

{
lib,
python3Packages,
fetchFromGitHub,
gexiv2,
gobject-introspection,
gtk3,
hicolor-icon-theme,
intltool,
libnotify,
librsvg,
runtimeShell,
wrapGAppsHook3,
fehSupport ? false,
feh,
imagemagickSupport ? true,
imagemagick,
appindicatorSupport ? true,
libayatana-appindicator,
bash,
}:
python3Packages.buildPythonApplication rec {
pname = "variety";
version = "0.8.13";
pyproject = true;
src = fetchFromGitHub {
owner = "varietywalls";
repo = "variety";
tag = version;
hash = "sha256-7CTJ3hWddbOX/UfZ1qX9rPNGTfkxQ4pxu23sq9ulgv4=";
};
nativeBuildInputs = [
intltool
wrapGAppsHook3
gobject-introspection
];
buildInputs = [
gexiv2
gtk3
hicolor-icon-theme
libnotify
librsvg
]
++ lib.optional appindicatorSupport libayatana-appindicator;
build-system = with python3Packages; [ setuptools ];
dependencies =
with python3Packages;
[
beautifulsoup4
configobj
dbus-python
distutils-extra
httplib2
lxml
pillow
pycairo
pygobject3
requests
setuptools
]
++ lib.optional fehSupport feh
++ lib.optional imagemagickSupport imagemagick;
doCheck = false;
# Prevent double wrapping, let the Python wrapper use the args in preFixup.
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
prePatch = ''
substituteInPlace variety_lib/varietyconfig.py \
--replace-fail "__variety_data_directory__ = \"../data\"" \
"__variety_data_directory__ = \"$out/share/variety\""
substituteInPlace variety/VarietyWindow.py \
--replace-fail '[script,' '["${runtimeShell}", script,' \
--replace-fail 'check_output(script)' 'check_output(["${runtimeShell}", script])'
substituteInPlace data/variety-autostart.desktop.template \
--replace-fail "/bin/bash" "${lib.getExe bash}" \
--replace-fail "{VARIETY_PATH}" "variety"
'';
pythonImportsCheck = [ "variety" ];
meta = {
homepage = "https://github.com/varietywalls/variety";
description = "Wallpaper manager for Linux systems";
mainProgram = "variety";
longDescription = ''
Variety is a wallpaper manager for Linux systems. It supports numerous
desktops and wallpaper sources, including local files and online services:
Flickr, Wallhaven, Unsplash, and more.
Where supported, Variety sits as a tray icon to allow easy pausing and
resuming. Otherwise, its desktop entry menu provides a similar set of
options.
Variety also includes a range of image effects, such as oil painting and
blur, as well as options to layer quotes and a clock onto the background.
'';
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [
p3psi
zfnmxt
];
};
}