hyprshade: init v0.9.3

This commit is contained in:
willswats 2023-09-02 22:41:56 +01:00 committed by Anderson Torres
parent abd6bdbfdd
commit 45715a7dc7
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pdm-backend
, more-itertools
, click
}:
buildPythonPackage rec {
pname = "hyprshade";
version = "0.9.3";
format = "pyproject";
src = fetchFromGitHub {
owner = "loqusion";
repo = "hyprshade";
rev = "refs/tags/v${version}";
hash = "sha256-ou072V9nZUqf5DEolkMQy979SjaZs4iOuoszw50k4Y8=";
};
nativeBuildInputs = [
pdm-backend
];
propagatedBuildInputs = [ more-itertools click ];
meta = with lib; {
homepage = "https://github.com/loqusion/hyprshade";
description = "Hyprland shade configuration tool";
license = licenses.mit;
maintainers = with maintainers; [ willswats ];
platforms = platforms.linux;
};
}

View file

@ -5699,6 +5699,8 @@ with pkgs;
wlroots = wlroots_0_15;
};
hyprshade = python311Packages.callPackage ../applications/window-managers/hyprwm/hyprshade { };
hysteria = callPackage ../tools/networking/hysteria { };
hyx = callPackage ../tools/text/hyx { };