dream2nix/examples/_d2n-extended-new-subsystem/builders.nix
2022-10-06 22:24:07 +03:00

14 lines
246 B
Nix

{config, ...}: let
inherit (config.pkgs) hello;
in {
builders.dummy = {...}: {
name = "dummy";
subsystem = "hello";
type = "pure";
build = {...}: {
packages.${hello.pname}.${hello.version} =
hello;
};
};
}