stupidterm: fix build with updated vte

vte no longer propagates pcre2
This commit is contained in:
Tor Hedin Brønner 2019-09-17 09:46:10 +02:00
parent a821167046
commit c95786fcfa

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pkgconfig, vte, gtk }:
{ stdenv, fetchFromGitHub, pkgconfig, vte, gtk, pcre2 }:
stdenv.mkDerivation {
pname = "stupidterm";
@ -6,7 +6,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ vte gtk ];
buildInputs = [ vte gtk pcre2 ];
src = fetchFromGitHub {
owner = "esmil";