Merge pull request #221640 from candyc1oud/cista

cista: init at 0.13
This commit is contained in:
Nick Cao 2023-03-18 19:04:09 +08:00 committed by GitHub
commit a62275a2e5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "cista";
version = "0.13";
src = fetchFromGitHub {
owner = "felixguendling";
repo = pname;
rev = "v${version}";
sha256 = "sha256-dQOVmKRXfApN0QRx/PmLVzeCGppFJBnNWIOoLbDbrds=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DCISTA_INSTALL=ON" ];
meta = with lib; {
homepage = "https://cista.rocks";
description = "A simple, high-performance, zero-copy C++ serialization & reflection library";
license = licenses.mit;
maintainers = with maintainers; [ candyc1oud ];
platforms = platforms.all;
};
}

View file

@ -19457,6 +19457,8 @@ with pkgs;
cimg = callPackage ../development/libraries/cimg { };
cista = callPackage ../development/libraries/cista { };
cjose = callPackage ../development/libraries/cjose { };
scmccid = callPackage ../development/libraries/scmccid { };