From 9e0fdd397382da10a8486d25cfa9d889fdd17f86 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sun, 23 Feb 2020 22:29:32 +0000 Subject: 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. --- lisp/f/default.nix | 6 +----- lisp/prelude.nix | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) (limited to 'lisp') diff --git a/lisp/f/default.nix b/lisp/f/default.nix index 0ca6898b6a15..f64bfcc5f0d1 100644 --- a/lisp/f/default.nix +++ b/lisp/f/default.nix @@ -1,8 +1,4 @@ -{ - depot ? import {}, - briefcase ? import {}, - ... -}: +{ depot, briefcase, ... }: depot.nix.buildLisp.library { name = "f"; diff --git a/lisp/prelude.nix b/lisp/prelude.nix index 9051f82394ff..5fe5d628e099 100644 --- a/lisp/prelude.nix +++ b/lisp/prelude.nix @@ -1,4 +1,4 @@ -{ depot ? import {}, ... }: +{ depot, ... }: depot.nix.buildLisp.library { name = "prelude"; -- cgit 1.4.1