blob: 04430c883bf6ef473008e92efba65ed531c01c84 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ depot, pkgs, ... }:
let
stdenv = with pkgs; overrideCC clangStdenv clang_11;
abseil_cpp = pkgs.abseil_cpp;
in stdenv.mkDerivation {
name = "dt";
src = ./.;
nativeBuildInputs = [ pkgs.cmake ];
buildInputs = with pkgs; [
abseil_cpp
farmhash
];
meta.ci = false;
}
|