nixpkgs/pkgs/development/libraries/abseil-cpp/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2021-05-22 15:11:44 +02:00
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, static ? stdenv.hostPlatform.isStatic }:
stdenv.mkDerivation rec {
pname = "abseil-cpp";
version = "20210324.2";
src = fetchFromGitHub {
owner = "abseil";
repo = "abseil-cpp";
rev = version;
sha256 = "0g9rbhk3mwjdfxk7cscd04vm8fphd5flz9yykpgvyy1nwa34zk3x";
};
2021-05-22 15:11:44 +02:00
patches = [
# Use CMAKE_INSTALL_FULL_{LIBDIR,INCLUDEDIR}
# https://github.com/abseil/abseil-cpp/pull/963
(fetchpatch {
url = "https://github.com/abseil/abseil-cpp/commit/5bfa70c75e621c5d5ec095c8c4c0c050dcb2957e.patch";
sha256 = "0nhjxqfxpi2pkfinnqvd5m4npf9l1kg39mjx9l3087ajhadaywl5";
})
];
2021-02-13 20:58:22 +01:00
cmakeFlags = [
"-DCMAKE_CXX_STANDARD=17"
2021-03-20 05:20:00 +01:00
"-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}"
2021-02-13 20:58:22 +01:00
];
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "An open-source collection of C++ code designed to augment the C++ standard library";
homepage = "https://abseil.io/";
license = licenses.asl20;
platforms = platforms.all;
maintainers = [ maintainers.andersk ];
};
}