build: add nix shell

This commit is contained in:
Kat Inskip 2024-04-07 11:17:40 -07:00
parent 8fbfab86e6
commit 00a25ab364
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
3 changed files with 88 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{pkgs ? import <nixpkgs> {}}: let
inherit (pkgs) mkShell cobalt;
in
mkShell {
packages = [
cobalt
];
}