diff options
author | Ben Sima <ben@bsima.me> | 2020-04-19 18:10:16 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-19 18:10:16 -0700 |
commit | 5781e0ca2188f39d388aabada7d80a1a315a0752 (patch) | |
tree | c69cf40e378a00b2182738edee3c8fff5213f43f /nix/build.nix | |
parent | 32fd9bd3fe6d9e3b52d85cf701bc9b0998a54412 (diff) |
Rename some Haskell nix files
Diffstat (limited to 'nix/build.nix')
-rw-r--r-- | nix/build.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/build.nix b/nix/build.nix index 6f979d7..dd16df6 100644 --- a/nix/build.nix +++ b/nix/build.nix @@ -17,7 +17,7 @@ let subset = a: b: builtins.all (x: builtins.elem x b) a; - allDeps = import ./deps.nix; + allDeps = import ./haskell-deps.nix; # gather data needed for compiling by analyzing the main module analyze = main: rec { @@ -42,7 +42,7 @@ let if (subset deps allDeps) then depsToPackageSet hp deps else throw '' - missing from deps.nix: + missing from nix/haskell-deps.nix: ${toString (lib.lists.subtractLists allDeps deps)} '')); |