File tree Expand file tree Collapse file tree 1 file changed +11
-15
lines changed
Expand file tree Collapse file tree 1 file changed +11
-15
lines changed Original file line number Diff line number Diff line change 1010 overlays = [
1111 ( import inputs . rust-overlay )
1212 self . overlays . default
13- ( _final : _prev : {
14- # Provide older versions of packages required by some extensions
15- oldstable = import inputs . nixpkgs-oldstable {
16- inherit system ;
17- config . allowUnfree = true ;
18- } ;
19- curl_8_6 =
20- ( import inputs . nixpkgs-oldstable {
13+ (
14+ let
15+ # Provide older versions of packages required by some extensions
16+ oldstable = import inputs . nixpkgs-oldstable {
2117 inherit system ;
2218 config . allowUnfree = true ;
23- } ) . curl ;
24- v8_oldstable =
25- ( import inputs . nixpkgs-oldstable {
26- inherit system ;
27- config . allowUnfree = true ;
28- } ) . v8 ;
29- } )
19+ } ;
20+ in
21+ _final : _prev : {
22+ curl_8_6 = oldstable . curl ;
23+ v8_oldstable = oldstable . v8 ;
24+ }
25+ )
3026 ] ;
3127 } ;
3228 } ;
You can’t perform that action at this time.
0 commit comments