Create shell.nix

This commit is contained in:
Gregory Bednov 2025-06-14 18:43:20 +03:00
commit 6fd6dd760c

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
ghc
];
}