haskell-urbit-api/shell.nix
2020-10-19 13:41:34 -04:00

12 lines
317 B
Nix

{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc884" }:
nixpkgs.mkShell {
name = "urbit-airlock-shell";
buildInputs = [
nixpkgs.ormolu.bin
(nixpkgs.pkgs.haskell.packages.${compiler}.ghcWithPackages (hp: with hp; [
aeson base bytestring http-streams lens text uuid wai wai-extra wreq
]))
];
}