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

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

40 lines
1000 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.0";
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-NwyUVeqXxfdyuDevjum6r8LyNtHa0eJ+4IFd3hLkiEE=";
2019-09-07 08:01:06 +00:00
};
patches = [
(fetchpatch {
name = "CVE-2020-11105.patch";
url = "https://github.com/USCiLab/cereal/commit/f27c12d491955c94583512603bf32c4568f20929.patch";
hash = "sha256-CIkbJ7bAN0MXBhTXQdoQKXUmY60/wQvsdn99FaWt31w=";
})
];
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
})