85 lines
2.5 KiB
Nix
85 lines
2.5 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
crane.url = "github:ipetkov/crane";
|
|
crane.inputs.nixpkgs.follows = "nixpkgs";
|
|
rust-overlay.url = "github:oxalica/rust-overlay";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, crane, rust-overlay, flake-utils }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
overlays = [ (import rust-overlay) ];
|
|
pkgs = import nixpkgs {
|
|
inherit system overlays;
|
|
};
|
|
inherit (pkgs) lib;
|
|
|
|
craneLib = crane.lib.${system};
|
|
|
|
src = craneLib.cleanCargoSource ./.;
|
|
|
|
buildInputs = [
|
|
pkgs.bintools
|
|
rust-toolchain
|
|
] ++ lib.optionals pkgs.stdenv.isDarwin [
|
|
# Additional darwin specific inputs can be set here
|
|
pkgs.libiconv
|
|
];
|
|
|
|
cargoArtifacts = craneLib.buildDepsOnly {
|
|
inherit src buildInputs;
|
|
};
|
|
|
|
# Build the actual crate itself, reusing the dependency
|
|
# artifacts from above.
|
|
aoc-2022 = craneLib.buildPackage {
|
|
inherit cargoArtifacts src buildInputs;
|
|
};
|
|
|
|
rust-toolchain = pkgs.rust-bin.nightly."2022-12-17".default;
|
|
rust-dev-toolchain = pkgs.rust-bin.nightly."2022-12-17".default.override {
|
|
extensions = [ "rust-src" "rust-analyzer" ];
|
|
};
|
|
in
|
|
{
|
|
checks = {
|
|
# Build the crate as part of `nix flake check` for convenience
|
|
inherit aoc-2022;
|
|
|
|
# Run clippy (and deny all warnings) on the crate source,
|
|
# again, resuing the dependency artifacts from above.
|
|
#
|
|
# Note that this is done as a separate derivation so that
|
|
# we can block the CI if there are issues here, but not
|
|
# prevent downstream consumers from building our crate by itself.
|
|
aoc-2022-clippy = craneLib.cargoClippy {
|
|
inherit cargoArtifacts src buildInputs;
|
|
cargoClippyExtraArgs = "--all-targets -- --deny warnings";
|
|
};
|
|
|
|
# Check formatting
|
|
aoc-2022-fmt = craneLib.cargoFmt {
|
|
inherit src;
|
|
};
|
|
};
|
|
|
|
packages.default = aoc-2022;
|
|
|
|
apps.default = flake-utils.lib.mkApp {
|
|
drv = aoc-2022;
|
|
};
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
inputsFrom = builtins.attrValues self.checks;
|
|
|
|
# Extra inputs can be added here
|
|
nativeBuildInputs = with pkgs; [
|
|
rust-dev-toolchain
|
|
bintools
|
|
gdb
|
|
];
|
|
};
|
|
});
|
|
}
|