Unverified Commit a33ea1ad authored by Austin Horstman's avatar Austin Horstman Committed by GitHub
Browse files

hyprland: 0.45.2 -> 0.46.1; hyprland-plugins.*: version bumps and update script tweaks (#365776)

parents 9720d271 81ef7931
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -2,14 +2,12 @@
  lib,
  callPackage,
  pkg-config,
  stdenv,
  hyprland,
}:
let
  mkHyprlandPlugin =
    hyprland:
    args@{ pluginName, ... }:
    stdenv.mkDerivation (
    hyprland.stdenv.mkDerivation (
      args
      // {
        pname = "${pluginName}";
+5 −5
Original line number Diff line number Diff line
@@ -3,18 +3,18 @@
  mkHyprlandPlugin,
  fetchFromGitHub,
  hyprland,
  unstableGitUpdater,
  nix-update-script,
}:

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

  src = fetchFromGitHub {
    owner = "VirtCode";
    repo = "hypr-dynamic-cursors";
    rev = "81f4b964f997a3174596ef22c7a1dee8a5f616c7";
    hash = "sha256-3SDwq2i2QW9nu7HBCPuDtLmrwLt2kajzImBsawKRZ+s=";
    rev = "f0cef070c531e3a3a1f713b7062bded357b4c468";
    hash = "sha256-XFQqJWxo6xUqLpAKqc0bHg1pZ21eFQ1HueDTxw7N6r8=";
  };

  dontUseCmakeConfigure = true;
@@ -28,7 +28,7 @@ mkHyprlandPlugin hyprland {
    runHook postInstall
  '';

  passthru.updateScript = unstableGitUpdater { };
  passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };

  meta = {
    description = "Plugin to make your Hyprland cursor more realistic";
+2 −0
Original line number Diff line number Diff line
@@ -3,6 +3,7 @@
  mkHyprlandPlugin,
  hyprland,
  fetchFromGitHub,
  nix-update-script,
}:

mkHyprlandPlugin hyprland {
@@ -25,6 +26,7 @@ mkHyprlandPlugin hyprland {
    runHook postInstall
  '';

  passthru.updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; };
  meta = {
    homepage = "https://github.com/pyt0xic/hyprfocus";
    description = "Focus animation plugin for Hyprland inspired by Flashfocus";
+3 −3
Original line number Diff line number Diff line
@@ -13,13 +13,13 @@

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

  src = fetchFromGitHub {
    owner = "horriblename";
    repo = "hyprgrass";
    rev = "f97b6ac2b7de3bae194b776c388467db2604929f";
    hash = "sha256-Jg5Q/v8tcNjopTMbra82y5n9QQdCnrbEFNgT1kA7pQE=";
    rev = "dc19ccb209147312a4f60d76193b995c2634e756";
    hash = "sha256-3ALmrImk37KT+UHt1EMi6PAHyj8WhL9Xw/Ar/ys4rtk=";
  };

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

            hyprland-plugins-src = fetchFromGitHub {
              owner = "hyprwm";
              repo = "hyprland-plugins";
              rev = "refs/tags/v${version}";
              hash = "sha256-hOljwsXpY4Y6guvcr51tWCnXo6c56yaBknnLXk1m3Vk=";
              hash = "sha256-Q9bXV9d6xqxr8V1UKmmmHdCgky3I4n2hk1TDxZ/pBto=";
            };
          in
          mkHyprlandPlugin hyprland {
Loading