From b66452693b9650fd763fe90f83f555472f8370c2 Mon Sep 17 00:00:00 2001 From: Antoine Eiche Date: Thu, 2 Jan 2020 21:26:38 +0100 Subject: [PATCH] next: set next-gtk-webkit as a propagated build input Because this reference is unfortunately not detected by Nix. Fixes #76834. --- pkgs/applications/networking/browsers/next/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/networking/browsers/next/default.nix b/pkgs/applications/networking/browsers/next/default.nix index 97c65fc12ef5..4aabb84393fa 100644 --- a/pkgs/applications/networking/browsers/next/default.nix +++ b/pkgs/applications/networking/browsers/next/default.nix @@ -61,6 +61,9 @@ stdenv.mkDerivation rec { unix-opts ]; + # This reference is unfortunately not detected by Nix + propagatedBuildInputs = [ next-gtk-webkit ]; + prePatch = '' substituteInPlace source/ports/gtk-webkit.lisp \ --replace "next-gtk-webkit" "${next-gtk-webkit}/bin/next-gtk-webkit"