Commit 45715a7d authored by willswats's avatar willswats Committed by Anderson Torres
Browse files

hyprshade: init v0.9.3

parent abd6bdbf
Loading
Loading
Loading
Loading
+34 −0
Original line number Diff line number Diff line
{ 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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };