mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
57 lines
1.1 KiB
Nix
57 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
|
|
# build time
|
|
, cmake
|
|
, pkg-config
|
|
|
|
# run time
|
|
, pcre2
|
|
|
|
# update script
|
|
, gitUpdater
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libyang";
|
|
version = "2.1.148";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CESNET";
|
|
repo = "libyang";
|
|
rev = "v${version}";
|
|
hash = "sha256-uYZJo8lUv6tq0MRRJvbTS/8t1eZNGqcMb5k5sVCwMJM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
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 ];
|
|
};
|
|
}
|