chore(fun/dt): Use vendored copy of Abseil
This commit is contained in:
parent
836d82592f
commit
6bd649d312
1 changed files with 2 additions and 2 deletions
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
stdenv = with pkgs; overrideCC clangStdenv clang_9;
|
stdenv = with pkgs; overrideCC clangStdenv clang_9;
|
||||||
abseil-cpp = pkgs.abseil-cpp.override { inherit stdenv; };
|
abseil_cpp = pkgs.abseil_cpp.override { inherit stdenv; };
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
name = "dt";
|
name = "dt";
|
||||||
src = ./.;
|
src = ./.;
|
||||||
nativeBuildInputs = [ pkgs.cmake ];
|
nativeBuildInputs = [ pkgs.cmake ];
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
abseil-cpp
|
abseil_cpp
|
||||||
farmhash
|
farmhash
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue