collection_service/shell.nix

11 lines
184 B
Nix
Raw Normal View History

2026-03-10 14:21:23 +03:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
pkg-config
openssl
rustup
2026-03-10 14:21:23 +03:00
];
shellHook = ''
export PATH="$HOME/.cargo/bin:$PATH"
'';
2026-03-10 14:21:23 +03:00
}