mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-11-23 00:13:02 +03:00
tests: fix _d2n-extended-new-subsystem
This commit is contained in:
parent
c90129fa5c
commit
14a56a8d43
@ -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;
|
||||
};
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user