11 lines
133 B
Nix
11 lines
133 B
Nix
|
with import <nixpkgs> { };
|
||
|
mkShell {
|
||
|
nativeBuildInputs = [
|
||
|
nix
|
||
|
nlohmann_json
|
||
|
libsodium
|
||
|
boost
|
||
|
pkg-config
|
||
|
];
|
||
|
}
|