7e6b3e1b42
These projects, which are not currently included in CI runs, don't build at the moment. Upcoming logic changes would mean that we would start including them in CI, which is undesirable until they're fixed - but I'm not going to be doing that now. Change-Id: I7c337e098be8bff00db6d99fc7236a695f5a85f5 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1850 Tested-by: BuildkiteCI Reviewed-by: kanepyork <rikingcoding@gmail.com>
9 lines
232 B
Nix
9 lines
232 B
Nix
{ pkgs, ... }:
|
|
|
|
pkgs.originals.notmuch.overrideAttrs(old: {
|
|
doCheck = false;
|
|
patches = [ ./dottime.patch ] ++ (if old ? patches then old.patches else []);
|
|
|
|
# TODO(tazjin): Fix the build and re-enable CI.
|
|
meta.ci = false;
|
|
})
|