Skip to content

Commit 6e779d7

Browse files
skin: revert Sphinx to whatever version in 23.11
1 parent ceda925 commit 6e779d7

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

default.nix

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
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
}:
1111
let
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
@@ -86,12 +86,12 @@ let
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 { };
9595
in
9696
{
9797
# build with `nix-build -A build`

0 commit comments

Comments
 (0)