Загрузить файлы в «/»

This commit is contained in:
Gregory Bednov 2026-03-22 23:32:44 +03:00
commit 21c7bc53cd
5 changed files with 227 additions and 0 deletions

16
shell.nix Normal file
View file

@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
(pkgs.haskellPackages.ghcWithPackages (p: with p; [
servant
wai
warp
servant-server
lucid
servant-lucid
haskell-language-server
]))
];
}