forked from extern/nix-config
3119b789f8
Alejandra is written in Rust, has more tests than nixfmt, and handles non-trivial code examples in Nix better.
26 lines
676 B
Nix
26 lines
676 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "hyprland-autoname-workspaces";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hyprland-community";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-+oJWPSN6VmUUpd5ZLrN5Sa9Yg6pqVlaQFSRnEkLpLt8=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-wXQVcTQ6up34ZqJP5hDttFEqtz+hmyd1aWFnPlFvazA=";
|
|
|
|
meta = with lib; {
|
|
description = "Automatically rename the workspaces with icons of started applications";
|
|
homepage = "https://github.com/hyprland-community/hyprland-autoname-workspaces";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [donovanglover];
|
|
};
|
|
}
|