tvl-depot/users/wpcarro/assessments/tt/shell.nix
Vincent Ambo 4753e2f286 chore(wpcarro/*): Remove some dead code
Found this while looking for non-3p uses of builtins.fetchGit. The
hailgun package is in the package set now, and the other thing was
unused (and it's also in the package set).

Change-Id: I6f519fd6014bbed90fc6cee695bed7afbcf55717
Reviewed-on: https://cl.tvl.fyi/c/depot/+/4984
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: wpcarro <wpcarro@gmail.com>
2022-01-18 19:22:12 +00:00

18 lines
353 B
Nix

{ pkgs, depot, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
hpkgs.aeson
hpkgs.cryptonite
hpkgs.envy
hpkgs.hailgun
hpkgs.resource-pool
hpkgs.servant-server
hpkgs.sqlite-simple
hpkgs.uuid
hpkgs.wai-cors
hpkgs.warp
]))
];
}