Skip to content

Commit

Permalink
Move nixpkgs pin back to 23.11
Browse files Browse the repository at this point in the history
Primarilty so that we're more compatible with the devnet repo
  • Loading branch information
enobayram committed May 14, 2024
1 parent cf174ab commit ea00687
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,23 @@
# we can avoid this input when this issue is fixed:
# https://github.com/NixOS/nixpkgs/issues/294183
nixpkgs-23-05.url = "github:NixOS/nixpkgs/23.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
nixpkgs.url = "github:NixOS/nixpkgs/23.11";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = inputs: inputs.flake-utils.lib.eachDefaultSystem (system:
let inherit (inputs) self;
pkgs = inputs.nixpkgs.legacyPackages.${system};
pkgs-23-05 = inputs.nixpkgs-23-05.legacyPackages.${system};
nodejs-slim = pkgs.nodejs-slim_20;
nodePackages = import "${self}/pkgs/nodePackages" {
inherit pkgs system;
nodejs = pkgs.nodejs;
nodejs = pkgs.nodejs_20;
};
graph = import pkgs/graph {
inherit pkgs system nodePackages;
inherit pkgs system nodePackages nodejs-slim;
};
kadena-cli = import pkgs/kadena-cli {
inherit pkgs system nodePackages;
inherit pkgs system nodePackages nodejs-slim;
rollup = pkgs-23-05.nodePackages.rollup;
};
in {
Expand Down

0 comments on commit ea00687

Please sign in to comment.