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

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

32 lines
747 B
Nix
Raw Normal View History

2023-07-17 05:35:32 +00:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
}:
2019-09-07 08:01:06 +00:00
2023-07-17 05:35:32 +00:00
stdenv.mkDerivation (finalAttrs: {
pname = "cereal";
version = "1.3.2";
2019-09-07 08:01:06 +00:00
src = fetchFromGitHub {
owner = "USCiLab";
repo = "cereal";
2023-07-17 05:35:32 +00:00
rev = "v${finalAttrs.version}";
hash = "sha256-HapnwM5oSNKuqoKm5x7+i2zt0sny8z8CePwobz1ITQs=";
2019-09-07 08:01:06 +00:00
};
2023-07-17 05:35:32 +00:00
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DJUST_INSTALL_CEREAL=yes" ];
2019-09-07 08:01:06 +00:00
2023-07-17 05:35:32 +00:00
meta = {
homepage = "https://uscilab.github.io/cereal/";
2019-09-07 08:01:06 +00:00
description = "A header-only C++11 serialization library";
2023-07-17 05:35:32 +00:00
changelog = "https://github.com/USCiLab/cereal/releases/tag/v${finalAttrs.version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.all;
2019-09-07 08:01:06 +00:00
};
2023-07-17 05:35:32 +00:00
})