Files
httpserver/shell.nix
2026-03-10 14:29:43 +01:00

11 lines
200 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs;[
rustup
];
nativeBuildInputs = with pkgs;[
openssl
];
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
}