diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-06-29T01·38-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-06-29T01·56+0000 |
commit | 1e71ce8a29c86b0544f4014d7c91bfb0b950a0c8 (patch) | |
tree | d5b593b30aa74cbfa424b60038a8384413ec7164 | |
parent | 8091da8f0f6efd365dddf4a09555ed49c093ea50 (diff) |
feat(ci-builds): Add overridden haskell packages r/1125
Add all the haskell packages we've overridden to the ci targets, so we can check that they build successfully. Change-Id: I3c2f2d61f542cc06ac2266881e182e755fcb3774 Reviewed-on: https://cl.tvl.fyi/c/depot/+/743 Reviewed-by: Kane York <rikingcoding@gmail.com> Reviewed-by: tazjin <mail@tazj.in>
-rw-r--r-- | ci-builds.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ci-builds.nix b/ci-builds.nix index 0c81ca31d941..7e09eef52378 100644 --- a/ci-builds.nix +++ b/ci-builds.nix @@ -65,6 +65,15 @@ in lib.fix(self: { depot.nix.getBins.tests ]; + # Haskell packages we've patched locally + haskellPackages = with depot.third_party.haskellPackages; [ + generic-arbitrary + hgeometry + hgeometry-combinatorial + vinyl + comonad-extras + ]; + # User-specific build targets tazjin = with depot.users.tazjin; [ blog |