Firefox: 134.0.2 -> 135.0; 128.6.0esr -> 128.7.0esr (#379636)
[NixPkgs.git] / pkgs / by-name / hy / hyprland-workspaces / package.nix
blob3ec41e8b9c48ff8cc07c0a5e0fb70323bbed7ed8
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "hyprland-workspaces";
9   version = "2.0.4";
11   src = fetchFromGitHub {
12     owner = "FieldofClay";
13     repo = "hyprland-workspaces";
14     rev = "v${version}";
15     hash = "sha256-a5P99aSqhlZqClXAoaUNv/jmuM5duLDf+OzMeKGwDVI=";
16   };
18   cargoHash = "sha256-LkAENnk1H1p8g7KKtkkh1aBtjXyM5scOtTROUaXwJhw=";
20   meta = with lib; {
21     description = "Multi-monitor aware Hyprland workspace widget";
22     homepage = "https://github.com/FieldofClay/hyprland-workspaces";
23     license = licenses.mit;
24     platforms = platforms.linux;
25     maintainers = with maintainers; [
26       kiike
27       donovanglover
28     ];
29     mainProgram = "hyprland-workspaces";
30   };