mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
30 lines
757 B
Nix
30 lines
757 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "swayest-workstyle";
|
|
version = "1.3.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Lyr-7D1h";
|
|
repo = "swayest_workstyle";
|
|
rev = version;
|
|
sha256 = "sha256-Dk6rAiz7PXUfyy9fWMtSVRjaWWl66n38gTNyWKqeqkU=";
|
|
};
|
|
|
|
cargoHash = "sha256-sLQPq3tyWq1TxxeFyg05qBt+KGI/vO0jLU7wJLiqcYA=";
|
|
|
|
doCheck = false; # No tests
|
|
|
|
meta = with lib; {
|
|
description = "Map sway workspace names to icons defined depending on the windows inside of the workspace";
|
|
homepage = "https://github.com/Lyr-7D1h/swayest_workstyle";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ miangraham ];
|
|
mainProgram = "sworkstyle";
|
|
};
|
|
}
|