tests: fix _d2n-extended-new-subsystem

This commit is contained in:
Yusuf Bera Ertan 2022-10-06 22:24:07 +03:00
parent c90129fa5c
commit 14a56a8d43
No known key found for this signature in database
GPG Key ID: 1D8F8FAF2294D6EA
2 changed files with 8 additions and 4 deletions

View File

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

View File

@ -1,9 +1,11 @@
{
{config, ...}: let
inherit (config.pkgs) hello;
in {
translators.dummy = {...}: {
type = "pure";
name = "dummy";
subsystem = "hello";
translate = {hello, ...}: {...}: {
translate = {...}: {
result = {
_generic = {
subsystem = "hello";