StartRNR/flake.nix

68 lines
2.2 KiB
Nix
Raw Normal View History

2023-08-26 03:37:24 -04:00
{
inputs = {
2023-08-26 17:44:04 -04:00
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
2023-08-26 03:37:24 -04:00
flake-utils.url = "github:numtide/flake-utils";
2023-08-26 17:44:04 -04:00
rust-overlay.url = "github:oxalica/rust-overlay";
rust-overlay.inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
2023-08-26 17:44:04 -04:00
crane.url = "github:ipetkov/crane";
crane.inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
rust-overlay.follows = "rust-overlay";
2023-08-26 17:44:04 -04:00
};
2023-08-26 03:37:24 -04:00
};
outputs = { self, nixpkgs, flake-utils, rust-overlay, crane, ... }:
2023-08-26 03:37:24 -04:00
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs {
inherit system;
overlays = [ rust-overlay.overlays.default ];
};
rustToolchain = pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default);
craneLib = crane.lib.${system}.overrideToolchain rustToolchain;
2023-08-26 16:46:22 -04:00
commonArgs = {
version = "0.1.0";
src = craneLib.path ./.;
cargoBuildFlags = "-p cli";
2023-08-27 05:05:22 -04:00
buildInputs = [ pkgs.openssl pkgs.sqlite ];
nativeBuildInputs = [ pkgs.pkg-config ];
};
2023-08-26 17:44:04 -04:00
# Cargo build dependencies/artifacts only
# This derivation exists so that multiple builds can reuse
# the same build artifacts
cargoArtifacts = craneLib.buildDepsOnly (commonArgs // {
pname = "ggelo-deps";
});
# Run clippy (and deny all warnings) on the crate source
runClippy = craneLib.cargoClippy (commonArgs // {
pname = "ggelo";
cargoClippyExtraArgs = "--all-targets -- --deny warnings";
inherit cargoArtifacts;
});
ggelo = craneLib.buildPackage (commonArgs // {
pname = "ggelo";
inherit cargoArtifacts;
});
in {
packages.ggelo = ggelo;
packages.default = ggelo;
2023-08-26 03:37:24 -04:00
checks.build = ggelo;
checks.runClippy = runClippy;
2023-08-26 03:37:24 -04:00
devShells.default = pkgs.mkShell {
packages = with pkgs; [ rustToolchain pkg-config rust-analyzer ];
2023-08-26 16:46:22 -04:00
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
2023-08-26 03:37:24 -04:00
};
});
}