Unverified Commit 1ce8fcbc authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

hyprlandPlugins: update plugins (#355037)

parents 43c84259 0198cfb7
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -4,22 +4,25 @@
  fetchFromGitHub,
  hyprland,
  mkHyprlandPlugin,
  nix-update-script,
}:
mkHyprlandPlugin hyprland rec {
  pluginName = "hy3";
  version = "0.44.0";
  version = "0.45.0";

  src = fetchFromGitHub {
    owner = "outfoxxed";
    repo = "hy3";
    rev = "refs/tags/hl${version}";
    hash = "sha256-6TVaB+nWVanqZWqievg+m7tVNrSpQ9CQcwXJQeyU/Q0=";
    hash = "sha256-b3PuEtRHTSxV809RLUiZVQhDQZ8NxxpWUjboTe9QAAY=";
  };

  nativeBuildInputs = [ cmake ];

  dontStrip = true;

  passthru.updateScript = nix-update-script { };

  meta = {
    homepage = "https://github.com/outfoxxed/hy3";
    description = "Hyprland plugin for an i3 / sway like manual tiling layout";
+3 −3
Original line number Diff line number Diff line
@@ -8,13 +8,13 @@

mkHyprlandPlugin hyprland {
  pluginName = "hypr-dynamic-cursors";
  version = "0-unstable-2024-10-10";
  version = "0-unstable-2024-11-10";

  src = fetchFromGitHub {
    owner = "VirtCode";
    repo = "hypr-dynamic-cursors";
    rev = "3ff4c2a053f7673b3b8cd45ada0886cbda13ebcc";
    hash = "sha256-XMR9wDNXmY3pPp3imT5vA4Gc6yC3R2Fatp4B53uLHzI=";
    rev = "a3427f2a7f1dc70236dbaa870eadead03d9807a6";
    hash = "sha256-7nznQzeq0rzvTos2axd4LvzLJ64n0erP3WxMIpCE5Ew=";
  };

  dontUseCmakeConfigure = true;
+3 −3
Original line number Diff line number Diff line
@@ -7,13 +7,13 @@

mkHyprlandPlugin hyprland {
  pluginName = "hyprfocus";
  version = "0-unstable-2024-05-30";
  version = "0-unstable-2024-10-09";

  src = fetchFromGitHub {
    owner = "pyt0xic";
    repo = "hyprfocus";
    rev = "aa7262d3a4564062f97b9cfdad47fd914cfb80f2";
    hash = "sha256-R1ZgNhQkoS6ZHRRKB+j5vYgRANfYO//sHbrD7moUTx0=";
    rev = "bead5b77d80f222c006d1a6c6f44ee8b02021d73";
    hash = "sha256-qIl7opF7fA1ZmC91TGQ7D12tB7kHc6Sn9DrfUN6sbBY=";
  };

  installPhase = ''
+4 −4
Original line number Diff line number Diff line
@@ -11,15 +11,15 @@
  nix-update-script,
}:

mkHyprlandPlugin hyprland rec {
mkHyprlandPlugin hyprland {
  pluginName = "hyprgrass";
  version = "0.8.2";
  version = "0.8.2-unstable-2024-10-30";

  src = fetchFromGitHub {
    owner = "horriblename";
    repo = "hyprgrass";
    rev = "v${version}";
    hash = "sha256-0dYMlNYuevQvsd6+imOkic3c6RSssM8WSx1hAepJ/wU=";
    rev = "f97b6ac2b7de3bae194b776c388467db2604929f";
    hash = "sha256-Jg5Q/v8tcNjopTMbra82y5n9QQdCnrbEFNgT1kA7pQE=";
  };

  nativeBuildInputs = [
+2 −2
Original line number Diff line number Diff line
@@ -14,13 +14,13 @@ let
            mkHyprlandPlugin,
          }:
          let
            version = "0.44.0";
            version = "0.45.0";

            hyprland-plugins-src = fetchFromGitHub {
              owner = "hyprwm";
              repo = "hyprland-plugins";
              rev = "refs/tags/v${version}";
              hash = "sha256-/SeOrMuPEOjngI+MBlzqxQ/sJxkJFIYoef+wJ/PmX2w=";
              hash = "sha256-hOljwsXpY4Y6guvcr51tWCnXo6c56yaBknnLXk1m3Vk=";
            };
          in
          mkHyprlandPlugin hyprland {
Loading