haskell-urbit-api/shell.nix

13 lines
366 B
Nix
Raw Normal View History

2020-09-17 03:49:49 +03:00
{ nixpkgs ? import <nixpkgs> {}, compiler ? "ghc884" }:
2020-10-04 16:26:43 +03:00
nixpkgs.mkShell {
name = "urbit-airlock-shell";
buildInputs = [
nixpkgs.ormolu.bin
(nixpkgs.pkgs.haskell.packages.${compiler}.ghcWithPackages (hp: with hp; [
2020-10-22 00:30:00 +03:00
aeson base bytestring conduit conduit-extra http-client lens
modern-uri req req-conduit text uuid wai wai-extra
2020-10-04 16:26:43 +03:00
]))
];
}