From 1782deba0dbc7e6efd590bec2aaaab8a8c4a195b Mon Sep 17 00:00:00 2001 From: klea Date: Thu, 23 Jul 2026 08:38:38 +0000 Subject: [PATCH] wlr-protocols: modernize As part of https://github.com/NixOS/nixpkgs/issues/356002, https://github.com/NixOS/nixpkgs/issues/541820 --- pkgs/development/libraries/wlroots/protocols.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/wlroots/protocols.nix b/pkgs/development/libraries/wlroots/protocols.nix index b3ec30a0618f..a99566333c3a 100644 --- a/pkgs/development/libraries/wlroots/protocols.nix +++ b/pkgs/development/libraries/wlroots/protocols.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { pname = "wlr-protocols"; - version = "unstable-2022-09-05"; + version = "0-unstable-2022-09-05"; src = fetchFromGitLab { domain = "gitlab.freedesktop.org"; @@ -22,8 +22,8 @@ stdenv.mkDerivation { patchPhase = '' substituteInPlace wlr-protocols.pc.in \ - --replace '=''${pc_sysrootdir}' "=" \ - --replace '=@prefix@' "=$out" + --replace-fail '=''${pc_sysrootdir}' "=" \ + --replace-fail '=@prefix@' "=$out" ''; doCheck = true;