feat(third_party): Add newer version of Abseil

This commit is contained in:
Vincent Ambo 2020-05-08 18:07:47 +01:00
parent 8486d2ace5
commit 12387550e3
2 changed files with 14 additions and 2 deletions

12
third_party/abseil-cpp/default.nix vendored Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
(pkgs.originals.abseil-cpp.overrideAttrs(_: {
version = "20200220-0232c87f";
src = pkgs.fetchFromGitHub {
owner = "abseil";
repo = "abseil-cpp";
rev = "0232c87f21c26718aa3eb2d86678070f3b498a4e";
sha256 = "1shay44sg0glz1f2jbx7dyvrrqmnx07q7azwraigyj61f7b9ccyx";
};
}))