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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
267 B
Nix
Raw Normal View History

2020-05-08 19:55:00 +02:00
{ depot, pkgs, ... }:
let stdenv = with pkgs; overrideCC clangStdenv clang_11;
2020-05-08 19:55:00 +02:00
in stdenv.mkDerivation {
name = "dt";
src = ./.;
nativeBuildInputs = [ pkgs.cmake ];
buildInputs = with depot.third_party; [
abseil_cpp
2020-05-08 19:55:00 +02:00
farmhash
];
meta.ci = false;
2020-05-08 19:55:00 +02:00
}