Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
532 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{ callPackage }:
{
dubSetupHook = callPackage (
{ makeSetupHook }:
makeSetupHook {
name = "dub-setup-hook";
} ./dub-setup-hook.sh
) { };
dubBuildHook = callPackage (
{ makeSetupHook, dub }:
makeSetupHook {
name = "dub-build-hook";
propagatedBuildInputs = [ dub ];
} ./dub-build-hook.sh
) { };
dubCheckHook = callPackage (
{ makeSetupHook, dub }:
makeSetupHook {
name = "dub-check-hook";
propagatedBuildInputs = [ dub ];
} ./dub-check-hook.sh
) { };
}