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

24 lines
580 B
Nix
Raw Normal View History

2019-09-07 09:01:06 +01:00
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "cereal";
2020-01-08 18:30:50 +00:00
version = "1.3.0";
2019-09-07 09:01:06 +01:00
nativeBuildInputs = [ cmake ];
src = fetchFromGitHub {
owner = "USCiLab";
repo = "cereal";
rev = "v${version}";
2020-01-08 18:30:50 +00:00
sha256 = "0hc8wh9dwpc1w1zf5lfss4vg5hmgpblqxbrpp1rggicpx9ar831p";
2019-09-07 09:01:06 +01:00
};
cmakeFlagsArray = [ "-DJUST_INSTALL_CEREAL=yes" ];
meta = with stdenv.lib; {
description = "A header-only C++11 serialization library";
homepage = "https://uscilab.github.io/cereal/";
2019-09-07 09:01:06 +01:00
platforms = platforms.all;
license = licenses.mit;
};
}