haskell-urbit-api/shell.nix
2020-10-23 10:07:02 -04:00

16 lines
346 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 conduit conduit-extra http-client modern-uri
req req-conduit text uuid
]))
];
}