based-scripts/shell.nix
2025-05-31 23:35:05 +00:00

12 lines
224 B
Nix

{ pkgs ? import <nixpkgs> {} }:
# necessary for those based nixos users who dont want to install system-wide deps
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
openssl
file
coreutils
minio-client
];
}