nixpkgs-suyu/pkgs/development/libraries/cereal/default.nix

24 lines
578 B
Nix
Raw Normal View History

2019-09-07 10:01:06 +02:00
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "cereal";
2020-01-08 19:30:50 +01:00
version = "1.3.0";
2019-09-07 10:01:06 +02:00
nativeBuildInputs = [ cmake ];
src = fetchFromGitHub {
owner = "USCiLab";
repo = "cereal";
rev = "v${version}";
2020-01-08 19:30:50 +01:00
sha256 = "0hc8wh9dwpc1w1zf5lfss4vg5hmgpblqxbrpp1rggicpx9ar831p";
2019-09-07 10:01:06 +02:00
};
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;
};
}