haskell-urbit-api/shell.nix
2020-11-13 15:45:49 -05:00

18 lines
384 B
Nix

{ nixpkgs ? import (builtins.fetchTarball (import ./nixpkgs.nix)) {}
, 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
]))
];
}