7 lines
116 B
Nix
7 lines
116 B
Nix
|
with import <nixpkgs> {};
|
||
|
|
||
|
mkShell {
|
||
|
name = "dns-over-wikipedia";
|
||
|
buildInputs = [ rustup openssl pkgconfig ];
|
||
|
}
|