feedback/ci.nix

15 lines
376 B
Nix
Raw Normal View History

2022-03-05 17:12:28 +03:00
let
sources = import ./nix/sources.nix;
pkgs = import ./nix/pkgs.nix { inherit sources; };
2022-05-26 12:59:39 +03:00
pre-commit = import ./nix/pre-commit.nix { inherit sources; };
2022-03-05 17:12:28 +03:00
in
{
release = pkgs.feedbackRelease;
2022-05-26 12:59:39 +03:00
pre-commit-check = pre-commit.run;
shell = pkgs.symlinkJoin {
name = "shell";
paths = (import ./shell.nix { inherit sources pkgs pre-commit; }).buildInputs;
};
2022-03-05 17:12:28 +03:00
}