forked from mirrors/nixpkgs
Add recommended runHook pre/postInstall
This commit is contained in:
parent
a64f36311a
commit
6ca946ee90
|
@ -28,9 +28,13 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
mkdir -p $out/bin $out/share
|
mkdir -p $out/bin $out/share
|
||||||
cp -v dump1090 view1090 $out/bin
|
cp -v dump1090 view1090 $out/bin
|
||||||
cp -vr public_html $out/share/dump1090
|
cp -vr public_html $out/share/dump1090
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue