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 11{
22 inputs ? import ./nix/inputs.nix ,
33 system ? builtins . currentSystem ,
4- pkgs ? import inputs . nixpkgs . "25.05" {
4+ pkgs ? import inputs . main . nixpkgs-rolling {
55 config = { } ;
6- overlays = [ ( import ./nix/overlay.nix ) ] ;
6+ overlays = [ ] ;
77 inherit system ;
88 } ,
99 withManuals ? false , # building the manuals is expensive
1010} :
1111let
1212 lib = pkgs . lib ;
1313 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" {
1516 config = { } ;
16- overlays = [ ] ;
1717 inherit system ;
1818 } ;
19- nix-dev-python-pkgs = with pkgs . python3 . pkgs ; [
19+ nix-dev-python-pkgs = with pkgs-pinned . python3 . pkgs ; [
2020 linkify-it-py
2121 myst-parser
2222 sphinx
8686 '' ;
8787 } ;
8888
89- devmode = pkgs-unstable . devmode . override {
89+ devmode = pkgs . devmode . override {
9090 buildArgs = ''-A build --show-trace'' ;
9191 open = "/index.html" ;
9292 } ;
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 { } ;
9595in
9696{
9797 # build with `nix-build -A build`
You can’t perform that action at this time.
0 commit comments