yggscraper/shell.nix

12 lines
189 B
Nix

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