Skip to content

Commit

Permalink
Merge pull request #155 from ifd3f/update/2024-11-26-nix-rust-inputs
Browse files Browse the repository at this point in the history
Unpin rust flake input versions
  • Loading branch information
ifd3f authored Nov 27, 2024
2 parents cd50799 + 71fc614 commit 8c09fbf
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 48 deletions.
54 changes: 9 additions & 45 deletions flake.lock

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

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
flake-utils.url = "github:numtide/flake-utils";

naersk = {
url = "github:nix-community/naersk/c5037590290c6c7dae2e42e7da1e247e54ed2d49";
url = "github:nix-community/naersk";
inputs.nixpkgs.follows = "nixpkgs";
};
rust-overlay = {
url = "github:oxalica/rust-overlay/ee0db3aeebafeaada2b98d076de6d314b4c8682e";
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
Expand Down
2 changes: 1 addition & 1 deletion nix/cross-helpers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ in rec {
overlays = [ rust-overlay.overlays.default ];
};

baseToolchain = pkgs.rust-bin.stable.latest.default;
baseToolchain = pkgs.rust-bin.stable."1.78.0".default;

supportedSystems = if hostInfo.kernel.name == "linux" then [
"aarch64-linux"
Expand Down
9 changes: 9 additions & 0 deletions scripts/bisect_cmd.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash

repodir=$(dirname "$(dirname "$0")")

set -euxo pipefail

cd "$repodir"
nix flake update && nix build

0 comments on commit 8c09fbf

Please sign in to comment.