2024-03-15 12:59:42 -04:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
rustPlatform,
|
|
|
|
fetchFromGitHub,
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "hyprland-workspaces";
|
2024-12-08 08:36:30 +00:00
|
|
|
version = "2.0.4";
|
2024-03-15 12:59:42 -04:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FieldofClay";
|
|
|
|
repo = "hyprland-workspaces";
|
2025-04-08 02:51:45 -04:00
|
|
|
rev = "v${version}";
|
2024-12-08 08:36:30 +00:00
|
|
|
hash = "sha256-a5P99aSqhlZqClXAoaUNv/jmuM5duLDf+OzMeKGwDVI=";
|
2024-03-15 12:59:42 -04:00
|
|
|
};
|
|
|
|
|
2025-01-23 08:45:31 +01:00
|
|
|
cargoHash = "sha256-UoL1b+T4z2hAl7GOga68qwAyCtm+Xo+AbyORmwvsqkw=";
|
2024-03-15 12:59:42 -04:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-07 09:46:46 +02:00
|
|
|
description = "Multi-monitor aware Hyprland workspace widget";
|
2024-03-15 12:59:42 -04:00
|
|
|
homepage = "https://github.com/FieldofClay/hyprland-workspaces";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2024-12-10 20:27:17 +01:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
kiike
|
|
|
|
donovanglover
|
|
|
|
];
|
2024-03-15 12:59:42 -04:00
|
|
|
mainProgram = "hyprland-workspaces";
|
|
|
|
};
|
|
|
|
}
|