about summary refs log tree commit diff
path: root/users/glittershark/xanthous/default.nix
blob: 8dfd0bce4bd0edc3524be476df02d138853057d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ pkgs ? (import ../../../. {}).third_party
, lib ? pkgs.lib
, ...
}:
(pkgs.haskell.lib.failOnAllWarnings (
  pkgs.haskellPackages.callPackage (import ./pkg.nix { inherit pkgs; }) {}
)) // {
  # TODO(grfn): Get this passing (see https://buildkite.com/tvl/depot/builds/3055)
  meta.ci = false;
}