aws-lc: 1.39.0 -> 1.42.0 (#369942)
[NixPkgs.git] / pkgs / by-name / sw / swayest-workstyle / package.nix
blobc42f0007ed27afe9d4e7d2565e43e4d27611475a
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 let
8   pname = "swayest-workstyle";
9   version = "1.3.5";
10   src = fetchFromGitHub {
11     owner = "Lyr-7D1h";
12     repo = "swayest_workstyle";
13     rev = version;
14     hash = "sha256-Dk6rAiz7PXUfyy9fWMtSVRjaWWl66n38gTNyWKqeqkU=";
15   };
17 rustPlatform.buildRustPackage {
18   inherit pname version src;
20   cargoHash = "sha256-sLQPq3tyWq1TxxeFyg05qBt+KGI/vO0jLU7wJLiqcYA=";
22   # No tests
23   doCheck = false;
25   meta = {
26     description = "Map sway workspace names to icons defined depending on the windows inside of the workspace";
27     homepage = "https://github.com/Lyr-7D1h/swayest_workstyle";
28     license = lib.licenses.mit;
29     mainProgram = "sworkstyle";
30     maintainers = with lib.maintainers; [ ];
31     platforms = lib.platforms.linux;
32   };