File tree Expand file tree Collapse file tree 3 files changed +29
-7
lines changed Expand file tree Collapse file tree 3 files changed +29
-7
lines changed Original file line number Diff line number Diff line change 6
6
outputs = { self , nixpkgs } :
7
7
{
8
8
overlays . default = final : prev : {
9
- nix-index-unwrapped = prev . nix-index-unwrapped . overrideAttrs ( old : {
10
- patches = [ ./nix-index-https.patch ] ;
9
+ nix-index-unwrapped = ( prev . nix-index-unwrapped . override {
10
+ rustPlatform = final . rustPackages_1_76 . rustPlatform ;
11
+ } ) . overrideAttrs ( old : rec {
12
+ version = "0.1.7-unstable-2024-05-11" ;
13
+
14
+ # commit with proper HTTPS fixes
15
+ # FIXME: unpin after next release
16
+ src = final . fetchFromGitHub {
17
+ owner = "nix-community" ;
18
+ repo = "nix-index" ;
19
+ rev = "195fb3525038e40836b8d286371365f5e7857c0c" ;
20
+ hash = "sha256-Cw6Q9rHcLjPKzab5O4G7cetFAaTZCex2VLvYIhJCbpg=" ;
21
+ } ;
22
+
23
+ cargoDeps = final . rustPlatform . fetchCargoTarball {
24
+ inherit src ;
25
+ hash = "sha256-Pl56f8FU/U/x4gkTt5yXxE8FVQ/pGBDuxxP7HrfsaBc=" ;
26
+ } ;
11
27
} ) ;
12
28
13
29
nixos-channel-native-programs = with final ; stdenv . mkDerivation {
Original file line number Diff line number Diff line change @@ -219,8 +219,13 @@ sub fetch {
219
219
220
220
# All of these jobs are not present in small channels
221
221
if ($channelName !~ / -small/ ) {
222
- downloadFile(" nixos.iso_plasma5.aarch64-linux" );
223
- downloadFile(" nixos.iso_plasma5.x86_64-linux" );
222
+ if ($channelName =~ / nixos-2[0123]/ ) {
223
+ downloadFile(" nixos.iso_plasma5.aarch64-linux" );
224
+ downloadFile(" nixos.iso_plasma5.x86_64-linux" );
225
+ } else {
226
+ downloadFile(" nixos.iso_plasma6.aarch64-linux" );
227
+ downloadFile(" nixos.iso_plasma6.x86_64-linux" );
228
+ }
224
229
225
230
downloadFile(" nixos.iso_gnome.aarch64-linux" );
226
231
downloadFile(" nixos.iso_gnome.x86_64-linux" );
@@ -357,6 +362,7 @@ sub redirect {
357
362
358
363
for my $artifact (" nixos-graphical" ,
359
364
" nixos-plasma5" ,
365
+ " nixos-plasma6" ,
360
366
" nixos-gnome" ,
361
367
" nixos-minimal" ,
362
368
)
You can’t perform that action at this time.
0 commit comments