lol

haskellPackages.candid: add workaround for doctest failure

This is fixed properly in candid 0.3 which we'll have soon, but in
the meantime we can just disable the offending warning. A real shame
that doctests are influenced by compiler warnings.

+4
+4
pkgs/development/haskell-modules/configuration-common.nix
··· 1992 1992 hw-xml = assert pkgs.lib.versionOlder self.generic-lens.version "2.2.0.0"; 1993 1993 doJailbreak super.hw-xml; 1994 1994 1995 + # doctests fail due to deprecation warnings 1996 + candid = assert pkgs.lib.versionOlder super.candid.version "0.3"; 1997 + appendConfigureFlags super.candid [ "--ghc-option=-Wno-deprecations" ]; 1998 + 1995 1999 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super