Merge pull request #322414 from JohnRTitor/hyprland

hyprland: 0.41.1 -> 0.41.2; hyprutils: 0.1.4 -> 0.1.5; hyprlandPlugins: 0.41.1 -> 0.41.2

Changed files
+27 -17
pkgs
applications
window-managers
hyprwm
hyprland-plugins
by-name
hy
hyprland
hyprutils
+7 -4
pkgs/applications/window-managers/hyprwm/hyprland-plugins/hy3.nix
···
}:
mkHyprlandPlugin hyprland rec {
pluginName = "hy3";
-
version = "0.41.1";
+
version = "0.41.2";
src = fetchFromGitHub {
owner = "outfoxxed";
repo = "hy3";
-
rev = "hl${version}";
-
hash = "sha256-bRLI+zgfT31LCMW4Pf701ZZx2oFeXoBu1BfYQjX6MPc=";
+
rev = "refs/tags/hl${version}";
+
hash = "sha256-aZuNKBwTwj8EXkDBMWNdRKbHPx647wJLWm55h6jOKbo=";
};
nativeBuildInputs = [ cmake ];
···
description = "Hyprland plugin for an i3 / sway like manual tiling layout";
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
-
maintainers = with lib.maintainers; [ aacebedo ];
+
maintainers = with lib.maintainers; [
+
aacebedo
+
johnrtitor
+
];
};
}
+7 -4
pkgs/applications/window-managers/hyprwm/hyprland-plugins/hyprland-plugins.nix
···
mkHyprlandPlugin,
}:
let
-
version = "0.41.1";
+
version = "0.41.2";
hyprland-plugins-src = fetchFromGitHub {
owner = "hyprwm";
repo = "hyprland-plugins";
-
rev = "v${version}";
-
hash = "sha256-Bw3JRBUZg2kmDwxa/UHvD//gGcNjbftTj2MSeLvx1q8=";
+
rev = "refs/tags/v${version}";
+
hash = "sha256-TnlAcO5K2gkab0mpKurP5Co6eWRycP/KbFqWNS2rsMA=";
};
in
mkHyprlandPlugin hyprland {
···
homepage = "https://github.com/hyprwm/hyprland-plugins";
description = "Hyprland ${description} plugin";
license = lib.licenses.bsd3;
-
maintainers = with lib.maintainers; [ fufexan ];
+
maintainers = with lib.maintainers; [
+
fufexan
+
johnrtitor
+
];
platforms = lib.platforms.linux;
};
}
+4 -4
pkgs/by-name/hy/hyprland/info.json
···
{
"branch": "main",
-
"commit_hash": "9e781040d9067c2711ec2e9f5b47b76ef70762b3",
-
"commit_message": "props: bump version to 0.41.1",
-
"date": "2024-06-13",
-
"tag": "v0.41.1"
+
"commit_hash": "918d8340afd652b011b937d29d5eea0be08467f5",
+
"commit_message": "flake.lock: update",
+
"date": "2024-06-25",
+
"tag": "v0.41.2"
}
+4 -3
pkgs/by-name/hy/hyprland/package.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "hyprland" + lib.optionalString debug "-debug";
-
version = "0.41.1";
+
version = "0.41.2";
src = fetchFromGitHub {
owner = "hyprwm";
repo = finalAttrs.pname;
fetchSubmodules = true;
rev = "refs/tags/v${finalAttrs.version}";
-
hash = "sha256-hLnnNBWP1Qjs1I3fndMgp8rbWJruxdnGTq77A4Rv4R4=";
+
hash = "sha256-JmfnYz+9a4TjNl3mAus1VpoWtTI9d1xkW9MHbkcV0Po=";
};
postPatch = ''
···
description = "Dynamic tiling Wayland compositor that doesn't sacrifice on its looks";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [
+
fufexan
+
johnrtitor
wozeparrot
-
fufexan
];
mainProgram = "Hyprland";
platforms = lib.platforms.linux;
+5 -2
pkgs/by-name/hy/hyprutils/package.nix
···
pkg-config,
pixman,
fetchFromGitHub,
+
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hyprutils";
-
version = "0.1.4";
+
version = "0.1.5";
src = fetchFromGitHub {
owner = "hyprwm";
repo = "hyprutils";
rev = "refs/tags/v${finalAttrs.version}";
-
hash = "sha256-CqRZne63BpYlPd/i8lXV0UInUt59oKogiwdVtBRHt60=";
+
hash = "sha256-dmRz128j/lJmMuTYeCYPfSBRHHQO3VeH4PbmoyAhHzw=";
};
nativeBuildInputs = [
···
outputs = ["out" "dev"];
cmakeBuildType = "RelWithDebInfo";
+
+
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/hyprwm/hyprutils";