haskell-urbit-api/shell.nix
2020-10-10 09:06:11 -04:00

12 lines
304 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 lens text uuid wai wai-extra wreq
]))
];
}