20 lines
458 B
Nix
20 lines
458 B
Nix
{
|
|
description = "Build Project Noah";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05";
|
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
|
|
import-tree.url = "github:vic/import-tree";
|
|
};
|
|
|
|
outputs = { self, flake-parts, import-tree, ... } @ inputs:
|
|
flake-parts.lib.mkFlake {
|
|
inputs = inputs // {
|
|
src = ./.;
|
|
};
|
|
} (import-tree [ ./src ./dev ]);
|
|
|
|
}
|