mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 20:43:28 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{ lib
|
||
, stdenv
|
||
, fetchFromGitHub
|
||
, cmake
|
||
, static ? stdenv.hostPlatform.isStatic
|
||
, cxxStandard ? null
|
||
}:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "abseil-cpp";
|
||
version = "20211102.0";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "abseil";
|
||
repo = "abseil-cpp";
|
||
rev = version;
|
||
sha256 = "sha256-sSXT6D4JSrk3dA7kVaxfKkzOMBpqXQb0WbMYWG+nGwk=";
|
||
};
|
||
|
||
patches = lib.optionals stdenv.isDarwin [
|
||
# Don’t propagate the path to CoreFoundation. Otherwise, it’s impossible to build packages
|
||
# that require a different SDK other than the default one.
|
||
./cmake-core-foundation.patch
|
||
];
|
||
|
||
cmakeFlags = [
|
||
"-DBUILD_SHARED_LIBS=${if static then "OFF" else "ON"}"
|
||
] ++ lib.optionals (cxxStandard != null) [
|
||
"-DCMAKE_CXX_STANDARD=${cxxStandard}"
|
||
];
|
||
|
||
nativeBuildInputs = [ cmake ];
|
||
|
||
meta = with lib; {
|
||
description = "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 ];
|
||
};
|
||
}
|