mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-02 06:44:56 +03:00
15 lines
312 B
Nix
15 lines
312 B
Nix
{config, ...}: {
|
|
discoverers.dummy = rec {
|
|
name = "dummy";
|
|
subsystem = "hello";
|
|
discover = {tree}: [
|
|
(config.dlib.construct.discoveredProject {
|
|
inherit subsystem name;
|
|
inherit (tree) relPath;
|
|
translators = ["dummy"];
|
|
subsystemInfo = {};
|
|
})
|
|
];
|
|
};
|
|
}
|