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
This commit is contained in:
Griffin Smith 2021-04-17 02:21:11 -04:00 committed by grfn
parent 377de6afdc
commit bb69d129d3

View file

@ -1,7 +1,4 @@
with import (builtins.fetchTarball { with (import ../../.. {}).third_party.nixpkgs;
url = "https://github.com/nixos/nixpkgs/archive/93a812bb9f9c398bd5b9636ab3674dcfe8cfb884.tar.gz";
sha256 = "14zzsgnigd7vjbrpzm1s4qsknm73sci38ss00x96wamz6psaxyah";
}) {};
mkShell { mkShell {
buildInputs = [ buildInputs = [
@ -17,4 +14,5 @@ mkShell {
pkg-config pkg-config
]; ];
LLVM_SYS_110_PREFIX = llvmPackages_11.bintools;
} }