nixpkgs/pkgs/by-name/li/libyang/package.nix
2025-05-20 15:28:42 +02:00

69 lines
1.2 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
# build time
cmake,
pkg-config,
# dependencies
pcre2,
xxHash,
# update script
gitUpdater,
}:
stdenv.mkDerivation rec {
pname = "libyang";
version = "3.12.2";
src = fetchFromGitHub {
owner = "CESNET";
repo = "libyang";
rev = "v${version}";
hash = "sha256-iHIHXrGAGZ5vYA/pbFmHVVczRtH34lC5IIqyj0SF1r4=";
};
outputs = [
"out"
"dev"
];
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
xxHash
];
propagatedBuildInputs = [
pcre2
];
cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR=lib"
"-DCMAKE_INSTALL_INCLUDEDIR=include"
];
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
meta = with lib; {
description = "YANG data modelling language parser and toolkit";
longDescription = ''
libyang is a YANG data modelling language parser and toolkit written (and
providing API) in C. The library is used e.g. in libnetconf2, Netopeer2,
sysrepo or FRRouting projects.
'';
homepage = "https://github.com/CESNET/libyang";
license = with licenses; [ bsd3 ];
platforms = platforms.unix;
maintainers = with maintainers; [ woffs ];
};
}