aoc/flake.nix

85 lines
2.4 KiB
Nix
Raw Normal View History

{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
crane.url = "github:ipetkov/crane";
crane.inputs.nixpkgs.follows = "nixpkgs";
2022-12-08 19:33:27 +00:00
rust-overlay.url = "github:oxalica/rust-overlay";
flake-utils.url = "github:numtide/flake-utils";
};
2022-12-08 19:33:27 +00:00
outputs = { self, nixpkgs, crane, rust-overlay, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
2022-12-08 19:33:27 +00:00
overlays = [ (import rust-overlay) ];
pkgs = import nixpkgs {
2022-12-08 19:33:27 +00:00
inherit system overlays;
};
inherit (pkgs) lib;
craneLib = crane.lib.${system};
src = craneLib.cleanCargoSource ./.;
buildInputs = [
pkgs.bintools
2022-12-08 19:33:27 +00:00
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;
};
2022-12-08 19:33:27 +00:00
rust-toolchain = pkgs.rust-bin.stable.latest.default;
rust-dev-toolchain = pkgs.rust-bin.stable.latest.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; [
2022-12-08 19:33:27 +00:00
rust-dev-toolchain
bintools
];
};
});
}