bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
28 lines
720 B
Nix
28 lines
720 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "hyprland-workspaces";
|
|
version = "2.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FieldofClay";
|
|
repo = "hyprland-workspaces";
|
|
rev = "v${version}";
|
|
hash = "sha256-GhUjvFMlgjTdgtV9ASW7IqE2dBktPyOlRwg6qM1r7vc=";
|
|
};
|
|
|
|
cargoHash = "sha256-RZVQSkegX8Fa9SNY7tGNxyu312oeDjXK4U1+1/UIAyA=";
|
|
|
|
meta = with lib; {
|
|
description = "Multi-monitor aware Hyprland workspace widget";
|
|
homepage = "https://github.com/FieldofClay/hyprland-workspaces";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ kiike donovanglover ];
|
|
mainProgram = "hyprland-workspaces";
|
|
};
|
|
}
|