Commit 8f0138fd authored by Gabriel Smith's avatar Gabriel Smith
Browse files

libyang: propagate pcre2 dependency

pcre2.h is required at build-time for any dependents of libyang.
parent 0d8cfebe
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -25,12 +25,17 @@ stdenv.mkDerivation rec {
    hash = "sha256-5oJV8gr2rwvSdpX5w3gmIw/LTrWtXVnl6oLr/soNTDk=";
  };

  outputs = [
    "out"
    "dev"
  ];

  nativeBuildInputs = [
    cmake
    pkg-config
  ];

  buildInputs = [
  propagatedBuildInputs = [
    pcre2
  ];