Remove default values for Nix expression parameters

I'm not sure if this commit breaks everything in my monorepo. I think it
will.

Why am I doing this? Perhaps it's a bad idea. I don't fully understand how
readTree works. My ignorance is costing me hours of time spent debugging. In an
effort to better understand readTree, I'm removing the default values for my Nix
expression parameters, which I believe have preventing errors from surfacing.
This commit is contained in:
William Carroll 2020-02-23 22:29:32 +00:00
parent fd720fbe4d
commit 9e0fdd3973
28 changed files with 36 additions and 97 deletions

View file

@ -1,7 +1,4 @@
{
depot ? import <depot> {},
...
}:
{ depot, ... }:
depot.buildGo.package {
name = "utils";