summary refs log tree commit diff
path: root/pkgs/applications/window-managers/hyprwm/hyprshade/default.nix
blob: 0a700a5257398b5667a15f1ddff70faa3ab45418 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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;
  };
}