Skip to content

Commit

Permalink
chore(nix): unpin nixpkgs version in flake (#418)
Browse files Browse the repository at this point in the history
Currently, the Nix `flake.nix` pins the nixpkgs version to
`release-21.11`. This branch of nixpkgs includes `rustc` v1.56.1, which
is too old to build `tokio-console`. This means that Nix users using the
flake cannot actually build the console.

This branch unpins the nixkpgs version, allowing Nix users to build with
the latest `rustc`.
  • Loading branch information
hawkw authored May 9, 2023
1 parent 17093bc commit eeca672
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 12 deletions.
38 changes: 27 additions & 11 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "The Tokio console: a debugger for async Rust.";

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-21.11";
# nixpkgs.url = "github:nixos/nixpkgs/release-21.11";
flake-utils = {
url = "github:numtide/flake-utils";
inputs.nixpkgs.follows = "nixpkgs";
Expand Down

0 comments on commit eeca672

Please sign in to comment.