mirror of
https://framagit.org/ppom/reaction
synced 2026-03-14 12:45:47 +01:00
12 lines
209 B
Nix
12 lines
209 B
Nix
with import <nixpkgs> {};
|
|
pkgs.mkShell {
|
|
name = "libipset";
|
|
buildInputs = [
|
|
ipset
|
|
clang
|
|
];
|
|
src = null;
|
|
shellHook = ''
|
|
export LIBCLANG_PATH="$(clang -print-file-name=libclang.so)"
|
|
'';
|
|
}
|