2023-06-07 20:03:39 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "hyprland-autoname-workspaces";
|
2024-05-15 02:39:06 +00:00
|
|
|
version = "1.1.14";
|
2023-06-07 20:03:39 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "hyprland-community";
|
|
|
|
repo = "hyprland-autoname-workspaces";
|
2023-09-17 20:23:03 +00:00
|
|
|
rev = version;
|
2024-05-15 02:39:06 +00:00
|
|
|
hash = "sha256-RTx4fmamjydrQzC1CpgbuvV6kg0S6Jyj/0Q9FrfrMlU=";
|
2023-06-07 20:03:39 +00:00
|
|
|
};
|
|
|
|
|
2024-05-15 02:39:06 +00:00
|
|
|
cargoHash = "sha256-Te3nBgr3uq8km8lX3AkCAS28leolZLXEF68phIEpg5k=";
|
2023-06-07 20:03:39 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Automatically rename workspaces with icons of started applications";
|
|
|
|
homepage = "https://github.com/hyprland-community/hyprland-autoname-workspaces";
|
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ donovanglover ];
|
|
|
|
mainProgram = "hyprland-autoname-workspaces";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|