depot/third_party/tvl/users/tazjin/dt/default.nix

16 lines
288 B
Nix
Raw Normal View History

{ depot, pkgs, ... }:
let
stdenv = with pkgs; overrideCC clangStdenv clang_10;
abseil_cpp = pkgs.abseil_cpp;
in stdenv.mkDerivation {
name = "dt";
src = ./.;
nativeBuildInputs = [ pkgs.cmake ];
buildInputs = with pkgs; [
abseil_cpp
farmhash
];
meta.ci = false;
}