cereal: init at 1.2.2
This commit is contained in:
parent
bc2b3ea358
commit
f2fd1381c5
23
pkgs/development/libraries/cereal/default.nix
Normal file
23
pkgs/development/libraries/cereal/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cereal";
|
||||
version = "1.2.2";
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "USCiLab";
|
||||
repo = "cereal";
|
||||
rev = "v${version}";
|
||||
sha256 = "1ckr8r03ggg5pyzg8yw40d5ssq40h5najvyqlnxc85fxxp8rnrx4";
|
||||
};
|
||||
|
||||
cmakeFlagsArray = [ "-DJUST_INSTALL_CEREAL=yes" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A header-only C++11 serialization library";
|
||||
homepage = https://uscilab.github.io/cereal/;
|
||||
platforms = platforms.all;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -153,6 +153,8 @@ in
|
||||
|
||||
castxml = callPackage ../development/tools/castxml { };
|
||||
|
||||
cereal = callPackage ../development/libraries/cereal { };
|
||||
|
||||
clj-kondo = callPackage ../development/tools/clj-kondo { };
|
||||
|
||||
cmark = callPackage ../development/libraries/cmark { };
|
||||
|
Loading…
Reference in New Issue
Block a user