mirror of
https://github.com/zoriya/zhs.git
synced 2025-12-06 00:36:10 +00:00
8 lines
116 B
Nix
8 lines
116 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
stack
|
|
haskell-language-server
|
|
];
|
|
}
|