Unverified Commit fa8a70d0 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

libyang: 3.7.8 -> 3.12.2 (#404998)

parents 7b2f7c1e 4f41f138
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -7,8 +7,9 @@
  cmake,
  pkg-config,

  # run time
  # dependencies
  pcre2,
  xxHash,

  # update script
  gitUpdater,
@@ -16,13 +17,13 @@

stdenv.mkDerivation rec {
  pname = "libyang";
  version = "3.7.8";
  version = "3.12.2";

  src = fetchFromGitHub {
    owner = "CESNET";
    repo = "libyang";
    rev = "v${version}";
    hash = "sha256-5oJV8gr2rwvSdpX5w3gmIw/LTrWtXVnl6oLr/soNTDk=";
    hash = "sha256-iHIHXrGAGZ5vYA/pbFmHVVczRtH34lC5IIqyj0SF1r4=";
  };

  outputs = [
@@ -35,6 +36,10 @@ stdenv.mkDerivation rec {
    pkg-config
  ];

  buildInputs = [
    xxHash
  ];

  propagatedBuildInputs = [
    pcre2
  ];