File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 126
126
# access to the store is restricted. If origSrc was already in the store
127
127
# you can pass the project in as a string.
128
128
rawCabalProject =
129
+ # Even if `cabal.project` doesn't exist, `cabal.project.local` is still used by cabal.
130
+ # We tested this: https://github.com/input-output-hk/haskell.nix/pull/1588
129
131
if cabalProject == null && cabalProjectLocal == null
130
132
then null
131
133
else (
Original file line number Diff line number Diff line change 26
26
# Avoid readDir and readFile IFD functions looking for these files in the hackage source
27
27
# `mkOverride 1100` means this will be used in preference to the mkOption default,
28
28
# but a `mkDefault` can still override this.
29
- cabalProject = lib . mkOverride 1100 ''
30
- packages: .
31
- '' ;
32
29
cabalProjectLocal = lib . mkOverride 1100 null ;
33
30
cabalProjectFreeze = lib . mkOverride 1100 null ;
34
31
src =
You can’t perform that action at this time.
0 commit comments