9 lines
141 B
Nix
9 lines
141 B
Nix
|
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
|
||
|
nativeBuildInputs = with pkgs; [
|
||
|
# building
|
||
|
cargo
|
||
|
pkg-config
|
||
|
openssl
|
||
|
];
|
||
|
}
|