5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
34 lines
709 B
Nix
34 lines
709 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, hatchling
|
|
, more-itertools
|
|
, click
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "hyprshade";
|
|
version = "0.12.1";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "loqusion";
|
|
repo = "hyprshade";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-xcFX1YApwEN40jPgRT0H/7SiODxXGYVTPUkSZ8OFIWs=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|