mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
stupidterm: fix build with updated vte
vte no longer propagates pcre2
This commit is contained in:
parent
a821167046
commit
c95786fcfa
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue