Skip to content

Commit 2ea9b9d

Browse files
committedSep 7, 2022
refactor(flake): use crane
1 parent ffd0ed3 commit 2ea9b9d

File tree

6 files changed

+132
-141
lines changed

6 files changed

+132
-141
lines changed
 

‎.cargo/config.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
target = "aarch64-unknown-linux-musl"
33

44
[target.aarch64-unknown-linux-musl]
5-
linker = "ld.lld"
65
rustflags = [ "-C", "target-feature=+crt-static" ]
6+
runner = "qemu-aarch64"

‎.github/workflows/ci.yaml

+2-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: nix-community
2020
- name: nix-build
2121
run: nix build -L
22-
nix-lints:
22+
nix-check:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- uses: actions/checkout@v3
@@ -32,8 +32,4 @@ jobs:
3232
with:
3333
name: nix-community
3434
- name: nix-lints
35-
run: |
36-
nix develop \
37-
--ignore-environment \
38-
--command \
39-
pre-commit run --all-files
35+
run: nix flake check -L

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
result
33
result*
44
.direnv/
5+
.pre-commit-config

‎.pre-commit-config.yaml

-46
This file was deleted.

‎flake.lock

+74-45
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎flake.nix

+54-43
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,92 @@
11
{
22
inputs = {
3-
fenix = {
4-
url = "github:nix-community/fenix";
3+
crane = {
4+
url = "github:ipetkov/crane";
55
inputs.nixpkgs.follows = "nixpkgs";
6+
inputs.flake-utils.follows = "flake-utils";
67
};
78
flake-utils.url = "github:numtide/flake-utils";
89
gitignore = {
910
url = "github:hercules-ci/gitignore.nix";
1011
inputs.nixpkgs.follows = "nixpkgs";
1112
};
12-
naersk = {
13-
url = "github:nix-community/naersk";
13+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
14+
pre-commit = {
15+
url = "github:cachix/pre-commit-hooks.nix";
1416
inputs.nixpkgs.follows = "nixpkgs";
17+
inputs.flake-utils.follows = "flake-utils";
18+
};
19+
rust = {
20+
url = "github:oxalica/rust-overlay";
21+
inputs.nixpkgs.follows = "nixpkgs";
22+
inputs.flake-utils.follows = "flake-utils";
1523
};
16-
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
1724
};
1825

19-
outputs = { self, fenix, flake-utils, gitignore, naersk, nixpkgs, ... }:
20-
flake-utils.lib.eachDefaultSystem (localSystem:
26+
outputs = { self, crane, flake-utils, gitignore, nixpkgs, pre-commit, rust }:
27+
let
28+
systems = [ "aarch64-darwin" "aarch64-linux" "x86_64-linux" ];
29+
in
30+
flake-utils.lib.eachSystem systems (hostPlatform:
2131
let
22-
crossSystem = nixpkgs.lib.systems.examples.aarch64-multiplatform-musl // { useLLVM = true; };
32+
targetPlatform = nixpkgs.lib.systems.examples.aarch64-multiplatform-musl;
2333

2434
pkgs = import nixpkgs {
25-
inherit localSystem crossSystem;
26-
overlays = [ fenix.overlay gitignore.overlay naersk.overlay ];
35+
localSystem = hostPlatform;
36+
crossSystem = targetPlatform;
37+
overlays = [ gitignore.overlay rust.overlays.default ];
2738
};
2839

29-
inherit (pkgs) pkgsBuildBuild pkgsBuildHost;
40+
rustToolchain = pkgs.pkgsBuildHost.rust-bin.fromRustupToolchainFile ./rust-toolchain.toml;
3041

31-
llvmToolchain = pkgsBuildHost.llvmPackages_latest;
32-
33-
rustToolchain = pkgsBuildHost.fenix.fromToolchainFile {
34-
file = ./rust-toolchain.toml;
35-
sha256 = "sha256-KXx+ID0y4mg2B3LHp7IyaiMrdexF6octADnAtFIOjrY=";
36-
};
42+
craneLib = (crane.mkLib pkgs).overrideToolchain rustToolchain;
3743

38-
naerskCross = pkgsBuildHost.naersk.override {
39-
inherit (llvmToolchain) stdenv;
40-
cargo = rustToolchain;
41-
rustc = rustToolchain;
42-
};
43-
44-
src = pkgs.gitignoreSource ./.;
44+
crateExpr = { stdenv, lib, qemu, gitignoreSource }:
45+
craneLib.buildPackage {
46+
src = gitignoreSource ./.;
47+
depsBuildBuild = [ qemu ];
48+
nativeBuildInputs = [
49+
stdenv.cc
50+
];
51+
HOST_CC = "${stdenv.cc.nativePrefix}cc";
52+
};
4553
in
4654
{
47-
packages = {
48-
default = self.packages.${localSystem}.hyperpixel-init;
49-
hyperpixel-init = naerskCross.buildPackage {
50-
name = "hyperpixel-init";
51-
52-
inherit src;
53-
54-
nativeBuildInputs = with llvmToolchain; [ stdenv.cc lld ];
55+
checks = {
56+
inherit (self.packages.${hostPlatform}) hyperpixel-init;
57+
pre-commit = pre-commit.lib.${hostPlatform}.run {
58+
src = pkgs.gitignoreSource ./.;
59+
hooks = {
60+
clippy.enable = true;
61+
nix-linter.enable = true;
62+
nixpkgs-fmt.enable = true;
63+
rustfmt.enable = true;
64+
statix.enable = true;
65+
};
5566
};
5667
};
5768

58-
devShells.default = pkgs.mkShell {
59-
name = "hyperpixel-init";
69+
packages = {
70+
default = self.packages.${hostPlatform}.hyperpixel-init;
71+
hyperpixel-init = pkgs.callPackage crateExpr { };
72+
};
6073

61-
inputsFrom = [ self.packages.${localSystem}.default ];
6274

63-
nativeBuildInputs = with pkgsBuildBuild; [
75+
devShells.default = self.packages.${hostPlatform}.default.overrideAttrs (old: {
76+
depsBuildBuild = with pkgs.pkgsBuildBuild; (old.depsBuildBuild or []) ++ [
6477
cargo-audit
6578
cargo-bloat
6679
cargo-edit
67-
cargo-udeps
6880
nix-linter
6981
nixpkgs-fmt
70-
pre-commit
7182
rnix-lsp
72-
rust-analyzer-nightly
73-
(pkgs.lib.lowPrio git)
83+
rust-analyzer
84+
statix
7485
];
7586

76-
shellHook = ''
77-
pre-commit install --install-hooks
87+
shellHook = (old.shellHook or "") + ''
88+
${self.checks.${hostPlatform}.pre-commit.shellHook}
7889
'';
79-
};
90+
});
8091
});
8192
}

0 commit comments

Comments
 (0)
Please sign in to comment.