solutions/nix/default.nix

43 lines
1.0 KiB
Nix
Raw Normal View History

2021-04-18 21:43:32 +00:00
{ 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; [
niv wasm-pack wasmtime valgrind protobuf clang llvm rocksdb
# inherit (pre-commit-hooks) 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$" ];
# };
};
}