mirror of
https://github.com/nix-community/dream2nix.git
synced 2024-12-02 06:44:56 +03:00
14 lines
246 B
Nix
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;
|
|
};
|
|
};
|
|
}
|