File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
inputs ? import ./nix/inputs.nix ,
3
3
system ? builtins . currentSystem ,
4
- pkgs ? import inputs . nixpkgs . "25.05" {
4
+ pkgs ? import inputs . main . nixpkgs-rolling {
5
5
config = { } ;
6
- overlays = [ ( import ./nix/overlay.nix ) ] ;
6
+ overlays = [ ] ;
7
7
inherit system ;
8
8
} ,
9
9
withManuals ? false , # building the manuals is expensive
10
10
} :
11
11
let
12
12
lib = pkgs . lib ;
13
13
releases = import ./nix/releases.nix { inherit lib inputs system ; } ;
14
- pkgs-unstable = import inputs . main . nixpkgs-rolling {
14
+ # Sphinx skin got very ugly in 24.05, let's not bump it without fixing that
15
+ pkgs-pinned = import inputs . nixpkgs . "23.11" {
15
16
config = { } ;
16
- overlays = [ ] ;
17
17
inherit system ;
18
18
} ;
19
- nix-dev-python-pkgs = with pkgs . python3 . pkgs ; [
19
+ nix-dev-python-pkgs = with pkgs-pinned . python3 . pkgs ; [
20
20
linkify-it-py
21
21
myst-parser
22
22
sphinx
86
86
'' ;
87
87
} ;
88
88
89
- devmode = pkgs-unstable . devmode . override {
89
+ devmode = pkgs . devmode . override {
90
90
buildArgs = ''-A build --show-trace'' ;
91
91
open = "/index.html" ;
92
92
} ;
93
- update-nix-releases = pkgs-unstable . callPackage ./nix/update-nix-releases.nix { } ;
94
- update-nixpkgs-releases = pkgs-unstable . callPackage ./nix/update-nixpkgs-releases.nix { } ;
93
+ update-nix-releases = pkgs . callPackage ./nix/update-nix-releases.nix { } ;
94
+ update-nixpkgs-releases = pkgs . callPackage ./nix/update-nixpkgs-releases.nix { } ;
95
95
in
96
96
{
97
97
# build with `nix-build -A build`
You can’t perform that action at this time.
0 commit comments