From 701600a19ee38cad5e5330ac005bc6bcf31cd1df Mon Sep 17 00:00:00 2001 From: Anton-Latukha Date: Wed, 17 Jun 2020 15:51:48 +0300 Subject: [PATCH] build.sh: add disclamer for options M build.sh --- build.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.sh b/build.sh index 14bce9c..039c718 100755 --- a/build.sh +++ b/build.sh @@ -12,6 +12,10 @@ NIX_PATH=${NIX_PATH:-"nixpkgs=https://github.com/nixos/nixpkgs/archive/$rev.tar. export NIX_PATH pkgName=${pkgName:-'defaultPkgName'} +# This settings expose most of the Nixpkgs Haskell.lib API: https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/haskell-modules/lib.nix + +# Some of these options implicitly enable other options they require, and some counterpoint options clash, obviously + # Don't fail at configure time if there are multiple versions of the same package in the (recursive) dependencies of the package being built. Will delay failures, if any, to compile time. allowInconsistentDependencies=${allowInconsistentDependencies:-'false'}