haskell-urbit-api/shell.nix

18 lines
384 B
Nix
Raw Normal View History

{ nixpkgs ? import (builtins.fetchTarball (import ./nixpkgs.nix)) {}
, compiler ? "ghc884"
}:
2020-10-04 16:26:43 +03:00
nixpkgs.mkShell {
name = "urbit-airlock-shell";
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
]))
];
}