Skip to content

Commit

Permalink
hyprland-workspaces: init at 2.0.0
Browse files Browse the repository at this point in the history
Closes #295965
  • Loading branch information
donovanglover committed Apr 20, 2024
1 parent c84cf38 commit cd5f77b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/by-name/hy/hyprland-workspaces/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:

rustPlatform.buildRustPackage rec {
pname = "hyprland-workspaces";
version = "2.0.0";

src = fetchFromGitHub {
owner = "FieldofClay";
repo = "hyprland-workspaces";
rev = "v${version}";
hash = "sha256-4QGLTimIpx74gWUyHCheUZZT1WgVzBoJRY8OlUDdOh4=";
};

cargoHash = "sha256-9ndP0nyRBCdOGth4UWA263IvjbgnVW2x9PK8oTaMrxg=";

meta = with lib; {
description = "A 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";
};
}

0 comments on commit cd5f77b

Please sign in to comment.