Skip to content

Commit

Permalink
Rename nixpkgs-stable to nixpkgs-old
Browse files Browse the repository at this point in the history
  • Loading branch information
n8henrie committed Aug 30, 2024
1 parent 37f1f33 commit bfeedc2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@

inputs = {
nixpkgs.url = "github:nixos/nixpkgs";
nixpkgs-stable.url = "github:nixos/nixpkgs/release-23.11";

# 23.11 has a sphinx issue with tox
# https://github.com/NixOS/nixpkgs/issues/268731
nixpkgs-old.url = "github:nixos/nixpkgs/release-23.05";
};

outputs =
{
self,
nixpkgs,
nixpkgs-stable,
nixpkgs-old,
}:
let
systems = [
Expand All @@ -27,7 +30,7 @@
let
pkgs = import nixpkgs {
inherit system;
overlays = [ (_: _: { inherit (nixpkgs-stable.legacyPackages.${system}) python38; }) ];
overlays = [ (_: _: { inherit (nixpkgs-old.legacyPackages.${system}) python38; }) ];
};
pname = "jupyter-black";
in
Expand Down

0 comments on commit bfeedc2

Please sign in to comment.