octavePackages.strings: add pkg-config for build to pick up pcre(2)

This commit is contained in:
Karl Hallsby 2022-12-23 09:28:08 -06:00 committed by Doron Behar
parent be699cf06b
commit 525ba3e492

View file

@ -2,7 +2,8 @@
, stdenv , stdenv
, lib , lib
, fetchurl , fetchurl
, pcre , pkg-config
, pcre2
}: }:
buildOctavePackage rec { buildOctavePackage rec {
@ -14,8 +15,12 @@ buildOctavePackage rec {
sha256 = "sha256-agpTD9FN1qdp+BYdW5f+GZV0zqZMNzeOdymdo27mTOI="; sha256 = "sha256-agpTD9FN1qdp+BYdW5f+GZV0zqZMNzeOdymdo27mTOI=";
}; };
nativeBuildInputs = [
pkg-config
];
buildInputs = [ buildInputs = [
pcre pcre2
]; ];
# The gripes library no longer exists. # The gripes library no longer exists.