3cecf7bb5a
Co-authored-by: Anderson Torres <torres.anderson.85@protonmail.com>
17 lines
363 B
Nix
17 lines
363 B
Nix
{ lib
|
|
, makeSetupHook
|
|
, teensy-cmake-macros
|
|
}:
|
|
|
|
makeSetupHook {
|
|
name = "teensy-cmake-macros-hook";
|
|
|
|
propagatedBuildInputs = [ teensy-cmake-macros ];
|
|
|
|
passthru = { inherit teensy-cmake-macros; };
|
|
|
|
meta = {
|
|
description = "A setup hook for teensy-cmake-macros";
|
|
inherit (teensy-cmake-macros.meta) maintainers platforms broken;
|
|
};
|
|
} ./setup-hook.sh
|