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
1 changed files with 2 additions and 2 deletions

View File

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