collection_service/shell.nix

7 lines
108 B
Nix
Raw Normal View History

2026-03-10 14:21:23 +03:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.pkg-config
pkgs.openssl
];
}