haskell-urbit-api/shell.nix

18 lines
344 B
Nix
Raw Normal View History

2020-11-14 00:42:40 +03:00
{ nixpkgs ? import ./nixpkgs.nix
, compiler ? "ghc884"
}:
2020-10-04 16:26:43 +03:00
nixpkgs.mkShell {
2020-11-29 17:57:46 +03:00
name = "urbit-api-shell";
2020-10-04 16:26:43 +03:00
buildInputs = [
nixpkgs.ormolu.bin
2020-10-23 17:07:02 +03:00
2020-10-04 16:26:43 +03:00
(nixpkgs.pkgs.haskell.packages.${compiler}.ghcWithPackages (hp: with hp; [
2020-10-23 17:07:02 +03:00
aeson base bytestring conduit conduit-extra http-client modern-uri
req req-conduit text uuid
2020-10-04 16:26:43 +03:00
]))
];
}