From 0e6f4634b677c1c2a9732fc2aef3a481b86454de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 19 Aug 2023 10:00:46 +0200 Subject: [PATCH] coeurl: fixup build with new meson https://hydra.nixos.org/build/231336088/nixlog/4/tail https://github.com/mesonbuild/meson/commit/6f4973abad9eec9fcc915117f1c3d1a93ccc948c --- pkgs/development/libraries/coeurl/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/coeurl/default.nix b/pkgs/development/libraries/coeurl/default.nix index 9e779dea6d8..b0743e032c6 100644 --- a/pkgs/development/libraries/coeurl/default.nix +++ b/pkgs/development/libraries/coeurl/default.nix @@ -37,6 +37,9 @@ stdenv.mkDerivation rec { hash = "sha256-a52Id7Nm3Mmmwv7eL58j6xovjlkpAO4KahVM/Q3H65w="; }) ]; + postPatch = '' + substituteInPlace subprojects/curl.wrap --replace '[provides]' '[provide]' + ''; nativeBuildInputs = [ ninja pkg-config meson ];