mirror of
https://github.com/tailscale/tailscale.git
synced 2025-10-23 01:05:32 +00:00
13 lines
415 B
Plaintext
13 lines
415 B
Plaintext
![]() |
#!/usr/bin/env sh
|
||
|
|
||
|
shell() {
|
||
|
nix shell nixos-unstable#llvmPackages_13.{llvm,lld,clang-unwrapped,llvm-manpages,clang-manpages,bintools} nixos-unstable#{binutils,linuxHeaders,bpftool,libbpf} "$@"
|
||
|
}
|
||
|
|
||
|
rm -rf include
|
||
|
mkdir -p include
|
||
|
shell -c rsync -r $(nix path-info nixos-unstable#linuxHeaders)/include/ include/
|
||
|
shell -c rsync -r $(nix path-info nixos-unstable#libbpf)/include/ include/
|
||
|
chmod -R u+rwX include
|
||
|
shell
|