52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{
|
|
description = "Build a cargo project without extra checks";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
crane = {
|
|
url = "github:ipetkov/crane";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
rust-overlay = {
|
|
url = "github:oxalica/rust-overlay";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, crane, flake-utils, rust-overlay, ... }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system}.appendOverlays [(import rust-overlay)];
|
|
craneLib = crane.mkLib pkgs;
|
|
my-crate = craneLib.buildPackage {
|
|
src = craneLib.cleanCargoSource (craneLib.path ./.);
|
|
};
|
|
in
|
|
{
|
|
checks = {
|
|
inherit my-crate;
|
|
};
|
|
|
|
packages.default = my-crate;
|
|
|
|
apps.default = flake-utils.lib.mkApp {
|
|
drv = my-crate;
|
|
};
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
name = "limbusart-shell";
|
|
|
|
inputsFrom = builtins.attrValues self.checks.${system};
|
|
|
|
packages = with pkgs; [
|
|
cargo
|
|
(rust-bin.stable.latest.default.override {extensions = ["rust-src"];})
|
|
];
|
|
};
|
|
});
|
|
}
|