forked from NucleoidMC/server-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7bf3579
commit 0d883cd
Showing
3 changed files
with
314 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
/target | ||
/.idea | ||
/result | ||
|
||
/wrapper_cache | ||
config.toml | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
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 ./.; | ||
|
||
deps = [ | ||
] ++ lib.optionals pkgs.stdenv.isDarwin [ | ||
# Additional darwin specific inputs can be set here | ||
pkgs.libiconv | ||
]; | ||
|
||
buildInputs = [ | ||
rust-toolchain | ||
] ++ deps; | ||
|
||
cargoArtifacts = craneLib.buildDepsOnly { | ||
inherit src buildInputs; | ||
}; | ||
|
||
# Build the actual crate itself, reusing the dependency | ||
# artifacts from above. | ||
server-wrapper = craneLib.buildPackage { | ||
inherit cargoArtifacts src buildInputs; | ||
}; | ||
|
||
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 server-wrapper; | ||
|
||
# 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. | ||
server-wrapper-clippy = craneLib.cargoClippy { | ||
inherit cargoArtifacts src buildInputs; | ||
cargoClippyExtraArgs = "--all-targets -- --deny warnings"; | ||
}; | ||
|
||
# Check formatting | ||
website-fmt = craneLib.cargoFmt { | ||
inherit src; | ||
}; | ||
}; | ||
|
||
packages.default = server-wrapper; | ||
|
||
apps.default = flake-utils.lib.mkApp { | ||
drv = server-wrapper; | ||
}; | ||
|
||
devShells.default = pkgs.mkShell { | ||
inputsFrom = builtins.attrValues self.checks; | ||
|
||
# Extra inputs can be added here | ||
nativeBuildInputs = with pkgs; [ | ||
rust-dev-toolchain | ||
] ++ deps; | ||
}; | ||
}); | ||
} |