9 lines
120 B
Nix
9 lines
120 B
Nix
{ }:
|
|
|
|
self: super: {
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
${super.buildPhase or ""}
|
|
runHook postBuild
|
|
'';
|
|
}
|