pyprland: 2.2.12 -> 2.2.15

This commit is contained in:
John Titor 2024-05-02 00:27:03 +05:30
parent a534c335e0
commit bb6c58aca8
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0

View File

@ -2,7 +2,7 @@
python3Packages.buildPythonApplication rec {
pname = "pyprland";
version = "2.2.12";
version = "2.2.15";
format = "pyproject";
disabled = python3Packages.pythonOlder "3.10";
@ -10,8 +10,8 @@ python3Packages.buildPythonApplication rec {
src = fetchFromGitHub {
owner = "hyprland-community";
repo = "pyprland";
rev = "refs/tags/${version}";
hash = "sha256-SVly20/+67d0Rr2SuM1n/JfT1SlyKdKRBLDx2okCZRY=";
rev = version;
hash = "sha256-ju/Xa3s0engE09q9EtKK/zhgimMmlTPXJrpwWQqUFLs=";
};
nativeBuildInputs = with python3Packages; [ poetry-core ];
@ -53,12 +53,12 @@ python3Packages.buildPythonApplication rec {
"pyprland.plugins.workspaces_follow_focus"
];
meta = with lib; {
meta = {
mainProgram = "pypr";
description = "An hyperland plugin system";
homepage = "https://github.com/hyprland-community/pyprland";
license = licenses.mit;
maintainers = with maintainers; [ iliayar ];
platforms = platforms.linux;
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ iliayar ];
platforms = lib.platforms.linux;
};
}