mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, gobject-introspection
|
|
, wrapGAppsHook3
|
|
, killall
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "waypaper";
|
|
version = "2.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "anufrievroman";
|
|
repo = "waypaper";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-ty3KiKkIyv6aqTua3YUB2smYJv7dXGPP5k3lXoxDzI0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gobject-introspection
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
build-system = [ python3.pkgs.setuptools ];
|
|
|
|
dependencies = [
|
|
python3.pkgs.pygobject3
|
|
python3.pkgs.platformdirs
|
|
python3.pkgs.importlib-metadata
|
|
python3.pkgs.pillow
|
|
];
|
|
|
|
propagatedBuildInputs = [ killall ];
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
dontWrapGApps = true;
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
changelog = "https://github.com/anufrievroman/waypaper/releases/tag/${version}";
|
|
description = "GUI wallpaper setter for Wayland-based window managers";
|
|
mainProgram = "waypaper";
|
|
longDescription = ''
|
|
GUI wallpaper setter for Wayland-based window managers that works as a frontend for popular backends like swaybg and swww.
|
|
|
|
If wallpaper does not change, make sure that swaybg or swww is installed.
|
|
'';
|
|
homepage = "https://github.com/anufrievroman/waypaper";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ totalchaos ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|