tvl-depot/users/grfn/achilles/shell.nix
Griffin Smith bb69d129d3 chore(grfn/achilles): Load shell.nix from depot
Rather than pinning a nixpkgs in here, just import the relative path to
the depot to load nixpkgs.

Change-Id: I452727d45e4f44ecc99b86d17e88a413c1911c59
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3025
Reviewed-by: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
2021-04-17 06:33:17 +00:00

18 lines
310 B
Nix

with (import ../../.. {}).third_party.nixpkgs;
mkShell {
buildInputs = [
clang_11
llvm_11.lib
llvmPackages_11.bintools
llvmPackages_11.clang
llvmPackages_11.libclang.lib
zlib
ncurses
libxml2
libffi
pkg-config
];
LLVM_SYS_110_PREFIX = llvmPackages_11.bintools;
}