libyang: propagate pcre2 dependency

pcre2.h is required at build-time for any dependents of libyang.
This commit is contained in:
Gabriel Smith
2025-04-21 13:42:27 +00:00
parent 0d8cfebe1c
commit 8f0138fdc2
+6 -1
View File
@@ -25,12 +25,17 @@ stdenv.mkDerivation rec {
hash = "sha256-5oJV8gr2rwvSdpX5w3gmIw/LTrWtXVnl6oLr/soNTDk=";
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
propagatedBuildInputs = [
pcre2
];