Files

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

31 lines
639 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation rec {
pname = "cista";
version = "0.16";
src = fetchFromGitHub {
owner = "felixguendling";
repo = "cista";
rev = "v${version}";
sha256 = "sha256-Q7IDQckFa/iMZ/f3Bim/yWyKCGqsNxJJ5C9PTToFZYI=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DCISTA_INSTALL=ON" ];
meta = with lib; {
homepage = "https://cista.rocks";
description = "Simple, high-performance, zero-copy C++ serialization & reflection library";
license = licenses.mit;
maintainers = [ maintainers.sigmanificient ];
platforms = platforms.all;
};
}