add shell.nix for ease of development on nixos
Docker / build (push) Waiting to run Details

This commit is contained in:
Chris W 2024-01-15 13:52:12 -07:00
parent e33aae3c1b
commit eff7cbeffe
1 changed files with 12 additions and 0 deletions

12
shell.nix Normal file
View File

@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
crystal_1_9
shards
crystalline
sqlite # libsqlite
gmp # libgmp
file # libmagic
];
}