mirror of
https://framagit.org/ppom/reaction
synced 2026-03-14 12:45:47 +01:00
13 lines
293 B
Nix
13 lines
293 B
Nix
# This shell.nix for NixOS users is only needed when building reaction-plugin-ipset
|
|
with import <nixpkgs> {};
|
|
pkgs.mkShell {
|
|
name = "libipset";
|
|
buildInputs = [
|
|
ipset
|
|
clang
|
|
];
|
|
src = null;
|
|
shellHook = ''
|
|
export LIBCLANG_PATH="$(clang -print-file-name=libclang.so)"
|
|
'';
|
|
}
|