mirror of
https://github.com/NorfairKing/feedback.git
synced 2024-11-26 13:21:05 +03:00
15 lines
376 B
Nix
15 lines
376 B
Nix
let
|
|
sources = import ./nix/sources.nix;
|
|
pkgs = import ./nix/pkgs.nix { inherit sources; };
|
|
pre-commit = import ./nix/pre-commit.nix { inherit sources; };
|
|
|
|
in
|
|
{
|
|
release = pkgs.feedbackRelease;
|
|
pre-commit-check = pre-commit.run;
|
|
shell = pkgs.symlinkJoin {
|
|
name = "shell";
|
|
paths = (import ./shell.nix { inherit sources pkgs pre-commit; }).buildInputs;
|
|
};
|
|
}
|