Commit dfafbf1 1 parent 7b926ce commit dfafbf1 Copy full SHA for dfafbf1
File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,9 @@ mkDerivation {
27
27
src = lib . cleanSource ./. ;
28
28
filter = gitignoreFilter ;
29
29
} ;
30
- in whitelistedSrc ;
30
+ # Including the freeze file here will alert us if nixpkgs has been updated
31
+ # without also updating the freeze file for non-Nix builds
32
+ in whitelistedSrc // { "cabal.project.freeze" = ../cabal.project.freeze ; } ;
31
33
32
34
isLibrary = true ;
33
35
isExecutable = false ;
Original file line number Diff line number Diff line change @@ -32,7 +32,9 @@ mkDerivation {
32
32
src = lib . cleanSource ./. ;
33
33
filter = gitignoreFilter ;
34
34
} ;
35
- in whitelistedSrc ;
35
+ # Including the freeze file here will alert us if nixpkgs has been updated
36
+ # without also updating the freeze file for non-Nix builds
37
+ in whitelistedSrc // { "cabal.project.freeze" = ../cabal.project.freeze ; } ;
36
38
37
39
isLibrary = false ;
38
40
isExecutable = true ;
You can’t perform that action at this time.
0 commit comments