remove unrelated comments

This commit is contained in:
Tom Bereknyei 2022-02-08 02:20:04 -05:00
parent 3d021ea6dc
commit e3f787e5d1
3 changed files with 4 additions and 19 deletions

View File

@ -29,23 +29,8 @@ TODO: bundlers should be also discoverable on search.nixos.org
Note: This section is a WIP
Each bundler needs:
- `name`
Folder with the same name should be created and this is a location of the
bundler. An entry with `name` is requred in `flake.nix`.
- `description`
A description that explains the content of the bundler in one sentence. An
entry with `description` is requred in `flake.nix`.
- `maintainers`
Each bundler needs one of more maintainers with the knowledge of specific
area. Each bundler has an entry in `.github/CODEOWNERS` with maintainers
next to them.
Each bundler is a function that generally takes a derivation and produces a
derivation as an output.
# Inspired by
- [nixos-generators](https://github.com/nix-community/nixos-generators)

View File

@ -59,12 +59,12 @@
});
toBuildDerivation = drv:
(import ./default.nix {
(import ./report/default.nix {
inherit drv;
pkgs = nixpkgsFor.${system};}).buildtimeDerivations;
toReport = drv:
(import ./default.nix {
(import ./report/default.nix {
inherit drv;
pkgs = nixpkgsFor.${system};}).runtimeReport;