yggscraper/shell.nix

12 lines
189 B
Nix
Raw Normal View History

2026-03-16 00:58:03 +03:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.jq
(pkgs.haskellPackages.ghcWithPackages (p: with p; [
ip
haskell-language-server
]))
];
}