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