mirror of
https://github.com/chirpstack/chirpstack.git
synced 2024-12-19 13:17:55 +00:00
2774c51ea2
This refactors the last bit of code that depends on the OpenSSL C library. Note that the openssl-probe does not depend on OpenSSL, it only tries to detect the CA certificate directory on the host system.
20 lines
519 B
Nix
20 lines
519 B
Nix
{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-23.05.tar.gz") {} }:
|
|
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = [
|
|
pkgs.pkg-config
|
|
];
|
|
buildInputs = [
|
|
pkgs.cacert
|
|
pkgs.rustup
|
|
pkgs.protobuf
|
|
pkgs.perl
|
|
pkgs.cmake
|
|
pkgs.clang
|
|
];
|
|
LIBCLANG_PATH = "${pkgs.llvmPackages.libclang.lib}/lib";
|
|
BINDGEN_EXTRA_CLANG_ARGS = "-I${pkgs.llvmPackages.libclang.lib}/lib/clang/${pkgs.llvmPackages.libclang.version}/include";
|
|
DOCKER_BUILDKIT = "1";
|
|
NIX_STORE = "/nix/store";
|
|
}
|