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

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

16 lines
288 B
Nix
Raw Normal View History

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