{
pkgs ? import <nixpkgs> { },
lib ? pkgs.lib,
}:
pkgs.mkShell {
name = "cdnindex shell";
buildInputs = with pkgs; [ openssl ];
nativeBuildInputs = with pkgs; [
sccache
rustc
cargo
rustfmt
clippy
pkg-config
rust-analyzer
];
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
}