File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -662,7 +662,7 @@ final: prev: {
662
662
( hsPkgs . pkgsBuildBuild . ${ to-key by-id . ${ d } } or hsPkgs . pkgsBuildBuild . ${ by-id . ${ d } . pkg-name } ) . components . exes . ${ final . lib . removePrefix "exe:" by-id . ${ d } . component-name } ;
663
663
getComponents = cabal2nixComponents : hsPkgs : p :
664
664
let
665
- components = p . components or { ${ p . component-name or "lib" } = { inherit ( p ) depends exe-depends ; } ; } ;
665
+ components = p . components or { ${ p . component-name or "lib" } = { inherit ( p ) depends ; exe-depends = p . exe-depends or [ ] ; } ; } ;
666
666
componentsWithPrefix = collectionName : prefix :
667
667
final . lib . listToAttrs ( final . lib . concatLists ( final . lib . mapAttrsToList ( n : c :
668
668
final . lib . optional ( final . lib . hasPrefix "${ prefix } :" n ) (
@@ -737,7 +737,7 @@ final: prev: {
737
737
sha256 = p . pkg-src-sha256 ;
738
738
} // final . lib . optionalAttrs ( p . pkg-src . type or "" == "local" ) {
739
739
src = if final . lib . hasPrefix "/" p . pkg-src . path && ! final . lib . hasPrefix "${ callProjectResults . src . origSubDir or "" } /." p . pkg-src . path
740
- then __trace p . pkg-src . path p . pkg-src . path
740
+ then p . pkg-src . path
741
741
else callProjectResults . src + final . lib . removePrefix "${ callProjectResults . src . origSubDir or "" } /." p . pkg-src . path ;
742
742
} // {
743
743
flags = p . flags ;
You can’t perform that action at this time.
0 commit comments