nixpkgs/pkgs/by-name/li/libyang/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.1 KiB
Nix
Raw Normal View History

2021-06-08 21:32:14 +02:00
{ stdenv
, lib
, fetchFromGitHub
2021-12-22 19:31:51 +01:00
# build time
2021-06-08 21:32:14 +02:00
, cmake
, pkg-config
2021-12-22 19:31:51 +01:00
# run time
, pcre2
# update script
, gitUpdater
2021-06-08 21:32:14 +02:00
}:
stdenv.mkDerivation rec {
pname = "libyang";
version = "2.1.148";
2021-06-08 21:32:14 +02:00
src = fetchFromGitHub {
owner = "CESNET";
repo = "libyang";
rev = "v${version}";
hash = "sha256-uYZJo8lUv6tq0MRRJvbTS/8t1eZNGqcMb5k5sVCwMJM=";
2021-06-08 21:32:14 +02:00
};
2021-12-22 19:31:51 +01:00
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
pcre2
];
cmakeFlags = [
"-DCMAKE_INSTALL_LIBDIR=lib"
"-DCMAKE_INSTALL_INCLUDEDIR=include"
];
2021-06-08 21:32:14 +02:00
passthru.updateScript = gitUpdater {
2021-06-08 21:32:14 +02:00
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 ];
};
}