yas: init at 7.1.0

This commit is contained in:
Earth Engine 2023-07-08 23:10:14 +00:00 committed by Anderson Torres
parent eec2231907
commit 02fb17b3f3
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
pname = "yas";
version = "7.1.0";
src = fetchFromGitHub {
owner = "niXman";
repo = "yas";
rev = version;
hash = "sha256-2+CpftWOEnntYBCc1IoR5eySbmhrMVunpUTZRdQ5I+A=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/include/yas
cp -r include/yas/* $out/include/yas
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/niXman/yas";
description = "Yet Another Serialization";
license = licenses.boost;
maintainers = with maintainers; [ ee2500 ];
platforms = platforms.all;
};
}

View file

@ -23247,6 +23247,8 @@ with pkgs;
yaml-cpp_0_3 = callPackage ../development/libraries/yaml-cpp/0.3.0.nix { };
yas = callPackage ../development/libraries/yas { };
libyang = callPackage ../development/libraries/libyang { };
libcyaml = callPackage ../development/libraries/libcyaml { };