about summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorMikael Fangel <34864484+MikaelFangel@users.noreply.github.com>2024-01-02 21:54:39 +0100
committerMikael Fangel <34864484+MikaelFangel@users.noreply.github.com>2024-01-02 23:06:23 +0100
commit0f1983e8a2d4cf0fd328a18f0a0e19e98f57a1ce (patch)
tree31ddb0b0da15bdf838443e3cc6d942d420a2fbb8 /pkgs/applications/window-managers
parent3cb442f49442e3dc76ecc661fbe236362396da8e (diff)
downloadnixlib-0f1983e8a2d4cf0fd328a18f0a0e19e98f57a1ce.tar
nixlib-0f1983e8a2d4cf0fd328a18f0a0e19e98f57a1ce.tar.gz
nixlib-0f1983e8a2d4cf0fd328a18f0a0e19e98f57a1ce.tar.bz2
nixlib-0f1983e8a2d4cf0fd328a18f0a0e19e98f57a1ce.tar.lz
nixlib-0f1983e8a2d4cf0fd328a18f0a0e19e98f57a1ce.tar.xz
nixlib-0f1983e8a2d4cf0fd328a18f0a0e19e98f57a1ce.tar.zst
nixlib-0f1983e8a2d4cf0fd328a18f0a0e19e98f57a1ce.zip
hyprland: 0.33.1 -> 0.34.0
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/hyprwm/hyprland/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/window-managers/hyprwm/hyprland/default.nix b/pkgs/applications/window-managers/hyprwm/hyprland/default.nix
index ad8079be63c3..11928befb4ba 100644
--- a/pkgs/applications/window-managers/hyprwm/hyprland/default.nix
+++ b/pkgs/applications/window-managers/hyprwm/hyprland/default.nix
@@ -20,6 +20,7 @@
 , pango
 , pciutils
 , systemd
+, tomlplusplus
 , udis86
 , wayland
 , wayland-protocols
@@ -42,13 +43,13 @@ assert lib.assertMsg (!enableNvidiaPatches) "The option `enableNvidiaPatches` ha
 assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been removed. Please refer https://wiki.hyprland.org/Configuring/XWayland";
 stdenv.mkDerivation (finalAttrs: {
   pname = "hyprland" + lib.optionalString debug "-debug";
-  version = "0.33.1";
+  version = "0.34.0";
 
   src = fetchFromGitHub {
     owner = "hyprwm";
     repo = finalAttrs.pname;
     rev = "v${finalAttrs.version}";
-    hash = "sha256-p7el5oQZPy9l1zyIrlHu6nA4BAu59eLoSqBjhkw2jaw=";
+    hash = "sha256-WSrjBI3k2dM/kGF20At0E6NlrJSB4+pE+WGJ6dFzWEs=";
   };
 
   patches = [
@@ -66,6 +67,7 @@ stdenv.mkDerivation (finalAttrs: {
       --replace "@HASH@" '${finalAttrs.src.rev}' \
       --replace "@BRANCH@" "" \
       --replace "@MESSAGE@" "" \
+      --replace "@DATE@" "2024-01-01" \
       --replace "@TAG@" "" \
       --replace "@DIRTY@" ""
   '';
@@ -100,6 +102,7 @@ stdenv.mkDerivation (finalAttrs: {
       wayland-protocols
       pango
       pciutils
+      tomlplusplus
       wlroots
     ]
     ++ lib.optionals stdenv.hostPlatform.isMusl [ libexecinfo ]