about summary refs log tree commit diff
path: root/users/glittershark/xanthous/default.nix
blob: c417c7af3e348b10e913365963d64946ebd12825 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ pkgs ? (import ../../../. {}).third_party
, lib ? pkgs.lib
, ...
}:
pkgs.haskell.lib.failOnAllWarnings (
  pkgs.haskellPackages.callPackage (import ./pkg.nix { inherit pkgs; }) {}
) // {
  meta.ci = false;
}