abseil-cpp: 20191119 -> 20200225.2

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg 2020-05-04 03:11:55 -07:00
parent dd38a549f8
commit 6356c0458d

View File

@ -2,15 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "abseil-cpp"; pname = "abseil-cpp";
date = "20191119"; version = "20200225.2";
rev = "8ba96a8244bbe334d09542e92d566673a65c1f78";
version = "${date}-${rev}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "abseil"; owner = "abseil";
repo = "abseil-cpp"; repo = "abseil-cpp";
rev = rev; rev = version;
sha256 = "089bvlspgdgi40fham20qy1m97gr1jh5k5czz49dincpd18j6inb"; sha256 = "0dwxg54pv6ihphbia0iw65r64whd7v8nm4wwhcz219642cgpv54y";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
@ -19,6 +17,7 @@ stdenv.mkDerivation rec {
description = "An open-source collection of C++ code designed to augment the C++ standard library"; description = "An open-source collection of C++ code designed to augment the C++ standard library";
homepage = "https://abseil.io/"; homepage = "https://abseil.io/";
license = licenses.asl20; license = licenses.asl20;
platforms = platforms.all;
maintainers = [ maintainers.andersk ]; maintainers = [ maintainers.andersk ];
}; };
} }