base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / ya / yambar-hyprland-wses / package.nix
blobe64e8e13dec1ff8e2a5338a5626b09584a5ecb6c
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "yambar-hyprland-wses";
8   version = "0.1.0";
10   src = fetchFromGitHub {
11     owner = "jonhoo";
12     repo = "yambar-hyprland-wses";
13     rev = "v${version}";
14     hash = "sha256-furHj1AAFgNiNHP9RBsVrIvrDckSKU8FXilzH9TQ99c=";
15   };
17   cargoHash = "sha256-/ewEgrBxRw5Xii5PX1GLKzBrZjgnzYc/Hz+M1pJpncQ=";
19   meta = {
20     description = "Enable Yambar to show Hyprland workspaces";
21     homepage = "https://github.com/jonhoo/yambar-hyprland-wses";
22     license = with lib.licenses; [ asl20 mit ];
23     maintainers = with lib.maintainers; [ ludovicopiero ];
24     mainProgram = "yambar-hyprland-wses";
25     platforms = lib.platforms.linux;
26   };