File tree Expand file tree Collapse file tree 1 file changed +2
-22
lines changed Expand file tree Collapse file tree 1 file changed +2
-22
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
description = "Script for generating Nixpkgs/NixOS channels" ;
3
3
4
- inputs . nixpkgs . url = "github:NixOS/nixpkgs/nixos-23.11 -small" ;
4
+ inputs . nixpkgs . url = "github:NixOS/nixpkgs/nixos-24.05 -small" ;
5
5
6
6
outputs = { self , nixpkgs } :
7
7
{
8
8
overlays . default = final : prev : {
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
- } ;
27
- } ) ;
28
-
29
9
nixos-channel-native-programs = with final ; stdenv . mkDerivation {
30
10
name = "nixos-channel-native-programs" ;
31
11
buildInputs = [
68
48
brotli
69
49
jq
70
50
nixos-channel-native-programs
71
- nix-index-unwrapped
51
+ nix-index
72
52
] ;
73
53
74
54
buildCommand = ''
You can’t perform that action at this time.
0 commit comments