43 lines
988 B
Nix
43 lines
988 B
Nix
{ sources ? import ./sources.nix
|
|
}:
|
|
let
|
|
# default nixpkgs
|
|
pkgs = import sources.nixpkgs { };
|
|
|
|
# gitignore.nix
|
|
gitignoreSource = (import sources."gitignore.nix" { inherit (pkgs) lib; }).gitignoreSource;
|
|
|
|
pre-commit-hooks = (import sources."pre-commit-hooks.nix");
|
|
|
|
rust = (import ./rust.nix { inherit sources; });
|
|
|
|
src = gitignoreSource ./..;
|
|
in
|
|
{
|
|
inherit pkgs src;
|
|
|
|
# provided by shell.nix
|
|
devTools = with pkgs; with pre-commit-hooks; [
|
|
niv wasm-pack wasmtime valgrind protobuf clang llvm rocksdb
|
|
pre-commit nixpkgs-fmt nix-linter
|
|
rust
|
|
];
|
|
|
|
# to be built by github actions
|
|
ci = {
|
|
pre-commit-check = pre-commit-hooks.run {
|
|
inherit src;
|
|
hooks = {
|
|
shellcheck.enable = true;
|
|
nixpkgs-fmt.enable = true;
|
|
nix-linter.enable = true;
|
|
cargo-check.enable = true;
|
|
rustfmt.enable = true;
|
|
clippy.enable = true;
|
|
};
|
|
# generated files
|
|
excludes = [ "^nix/sources\.nix$" ];
|
|
};
|
|
};
|
|
}
|