Files
httpserver/shell.nix
2026-03-26 15:59:54 +01:00

17 lines
243 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs;[
rustup
];
nativeBuildInputs = with pkgs;[
openssl
glib
gdk-pixbuf
pango
atk
xdo
lld
];
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
}