StartRNR/flake.nix

57 lines
1.7 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
crane.url = "github:ipetkov/crane";
crane.inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
2023-08-26 03:37:24 -04:00
};
2023-08-26 17:44:04 -04:00
outputs = { self, nixpkgs, crane, flake-utils, ... }:
2023-08-26 03:37:24 -04:00
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
2023-08-26 17:44:04 -04:00
craneLib = crane.lib.${system};
2023-08-26 16:46:22 -04:00
commonArgs = {
version = "0.1.0";
src = craneLib.path ./.;
cargoBuildFlags = "-p cli";
buildInputs = [ pkgs.openssl ];
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-clippy-check";
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; [ rustc cargo 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
};
});
}