i made this script-like code

This commit is contained in:
Gregory Bednov 2026-03-16 00:58:03 +03:00
commit d504ccf992
5 changed files with 123 additions and 0 deletions

12
shell.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.jq
(pkgs.haskellPackages.ghcWithPackages (p: with p; [
ip
haskell-language-server
]))
];
}