not_a_moodle/shell.nix

16 lines
256 B
Nix
Raw Permalink Normal View History

2026-03-22 23:32:44 +03:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
(pkgs.haskellPackages.ghcWithPackages (p: with p; [
servant
wai
warp
servant-server
lucid
servant-lucid
haskell-language-server
]))
];
}